applications renamed to app

This commit is contained in:
Software Shinobi
2026-02-10 03:01:40 -05:00
parent 7c2b1dced1
commit 2218991ff6
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 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() application = get_asgi_application()

View File

@@ -74,7 +74,7 @@ CORS_ALLOWED_ORIGINS = [
CORS_ORIGIN_ALLOW_ALL = True CORS_ORIGIN_ALLOW_ALL = True
ROOT_URLCONF = 'application.urls' ROOT_URLCONF = 'app.urls'
TEMPLATES = [ TEMPLATES = [
{ {
@@ -97,7 +97,7 @@ TEMPLATES = [
}, },
] ]
WSGI_APPLICATION = 'application.wsgi.application' WSGI_APPLICATION = 'app.wsgi.application'
# Database # Database
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases # 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 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() application = get_wsgi_application()

View File

@@ -1,8 +1,13 @@
services: services:
# The Django Web Application # The Django Web Application
web: web:
build: .
container_name: card-players-unite-web container_name: card-players-unite-web
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
ports: ports:
- "8000:8000" - "8000:8000"
volumes: volumes:

File diff suppressed because it is too large Load Diff

View File

@@ -6,7 +6,7 @@ import sys
def main(): def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'application.settings') os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings')
try: try:

View File

@@ -8,7 +8,7 @@
<title> <title>
Card Players Unite / card tournaments and events near you (shinobi test) Card Players Unite / card tournaments and events near you
</title> </title>