Last bit of major changes

Closes #1
Closes #5
Closes #6
Closes #8
Closes #9
Closes #10
This commit is contained in:
2026-01-26 04:11:38 -06:00
parent 1cd87156bd
commit 739d136209
24 changed files with 1157 additions and 410 deletions

View File

@@ -26,7 +26,7 @@ SECRET_KEY = 'django-insecure-y-a6jb6gv)dd!32_c!8rn70cnn%8&_$nc=m)0#4d=%b65%g(0*
DEBUG = True
FEATURE_BOUNTY_BOARD = DEBUG
FEATURE_DEMO_SITE = True
FEATURE_PLAYTEST_PROXY = DEBUG
FEATURE_PLAYTEST_PROXY = False
FEATURE_VIRTUAL_PACKS = DEBUG
ALLOWED_HOSTS = ['testserver', 'localhost', '127.0.0.1']
@@ -45,6 +45,7 @@ INSTALLED_APPS = [
'users',
'store',
'decks',
'proxy',
]
AUTH_USER_MODEL = 'users.User'

View File

@@ -9,6 +9,7 @@ urlpatterns = [
path('', include('store.urls')), # Store is the home app
path('home', RedirectView.as_view(url='/', permanent=True), name='home'), # Redirect /home to /
path('decks/', include('decks.urls')),
path('proxy/', include('proxy.urls')),
# SEO
path('robots.txt', TemplateView.as_view(template_name="robots.txt", content_type="text/plain")),