Working .env setup

This commit is contained in:
2026-08-03 10:39:19 -05:00
parent 74e44c19a8
commit 97cbacec8e
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'),
]