Rename Django project module plantdb/ → bloombase/, update all references in manage.py, docker-compose.yml, wsgi/asgi/settings. Replace PlantDB with BloomBase in all template titles and navbar. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
393 B
Python
16 lines
393 B
Python
"""
|
|
WSGI config for plantdb project.
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/
|
|
"""
|
|
|
|
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'bloombase.settings')
|
|
|
|
application = get_wsgi_application()
|