applications renamed to app
This commit is contained in:
@@ -11,6 +11,6 @@ import os
|
||||
|
||||
from django.core.asgi import get_asgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'application.settings')
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings')
|
||||
|
||||
application = get_asgi_application()
|
||||
@@ -74,7 +74,7 @@ CORS_ALLOWED_ORIGINS = [
|
||||
|
||||
CORS_ORIGIN_ALLOW_ALL = True
|
||||
|
||||
ROOT_URLCONF = 'application.urls'
|
||||
ROOT_URLCONF = 'app.urls'
|
||||
|
||||
TEMPLATES = [
|
||||
{
|
||||
@@ -97,7 +97,7 @@ TEMPLATES = [
|
||||
},
|
||||
]
|
||||
|
||||
WSGI_APPLICATION = 'application.wsgi.application'
|
||||
WSGI_APPLICATION = 'app.wsgi.application'
|
||||
|
||||
# Database
|
||||
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
|
||||
@@ -11,6 +11,6 @@ import os
|
||||
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'application.settings')
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings')
|
||||
|
||||
application = get_wsgi_application()
|
||||
@@ -1,8 +1,13 @@
|
||||
services:
|
||||
# The Django Web Application
|
||||
web:
|
||||
build: .
|
||||
container_name: card-players-unite-web
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
|
||||
restart: unless-stopped
|
||||
|
||||
ports:
|
||||
- "8000:8000"
|
||||
volumes:
|
||||
|
||||
1565
dump-directory-20260210-025037.txt
Normal file
1565
dump-directory-20260210-025037.txt
Normal file
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ import sys
|
||||
|
||||
def main():
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'application.settings')
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings')
|
||||
|
||||
try:
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<title>
|
||||
|
||||
Card Players Unite / card tournaments and events near you
|
||||
(shinobi test) Card Players Unite / card tournaments and events near you
|
||||
|
||||
</title>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user