Working .env setup

This commit is contained in:
JakeBreath
2026-08-03 10:39:19 -05:00
parent f593d16ca4
commit 2764644d8b
19 changed files with 546 additions and 66 deletions
+10
View File
@@ -0,0 +1,10 @@
from django.urls import path
from . import views
app_name = 'landing'
urlpatterns = [
path('', views.gate, name='gate'),
path('home/', views.home, name='home'),
]