This commit is contained in:
Flatlogic Bot 2025-11-24 16:29:58 +00:00
parent f031af65da
commit 24e878fd7d
14 changed files with 4 additions and 2 deletions

4
.gitignore vendored
View File

@ -1,3 +1,3 @@
*.pyc
__pycache__/
node_modules/
*/node_modules/
*/build/

View File

@ -2,6 +2,8 @@ from django.urls import path
from .views import home
app_name = "core"
urlpatterns = [
path("", home, name="home"),
]