Last bit of major changes
Closes #1 Closes #5 Closes #6 Closes #8 Closes #9 Closes #10
This commit is contained in:
@@ -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'
|
||||
|
||||
@@ -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")),
|
||||
|
||||
Reference in New Issue
Block a user