Merge pull request 'applications renamed to app' (#2) from application-renamed into main

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-02-18 21:44:49 -05:00
10 changed files with 1577 additions and 7 deletions

View File

@@ -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()

View File

@@ -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

View File

@@ -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()

View File

@@ -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:

File diff suppressed because it is too large Load Diff

View File

@@ -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:

View File

@@ -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>