Skip to content
Snippets Groups Projects
Commit 24701e23 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Development ready

parent a7790f72
No related branches found
No related tags found
1 merge request!86Merge school-apps
from django.urls import path
#from .import views
from . import views
urlpatterns = [
#path('', views.index, name='aub_index'),
#path('details/<int:aub_id>/', views.details, name='aub_details'),
#path('apply_for', views.apply_for, name='aub_apply_for'),
#path('applied_for', views.applied_for, name='aub_applied_for'),
#path('check1', views.check1, name='aub_check1'),
#path('check2', views.check2, name='aub_check2'),
path('', views.index, name='aub_index'),
path('details/<int:aub_id>/', views.details, name='aub_details'),
path('apply_for', views.apply_for, name='aub_apply_for'),
path('applied_for', views.applied_for, name='aub_applied_for'),
path('check1', views.check1, name='aub_check1'),
path('check2', views.check2, name='aub_check2'),
]
......@@ -19,19 +19,19 @@ from .secure_settings import *
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
# SECRET_KEY = '_89lg!56$d^sf$22cz1ja_f)x9z(nc*y-x*@j4!!vzmlgi*53u'
# Provided by secure_settings
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
DEBUG = True
ALLOWED_HOSTS = [
'info.katharineum.de',
'178.63.239.184',
'localhost',
'127.0.0.1'
]
# Application definition
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment