aboutsummaryrefslogtreecommitdiffstats
path: root/django/project/urls.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2022-01-13 18:08:28 -0500
committerJesús <heckyel@hyperbola.info>2022-01-13 18:08:28 -0500
commit4317b0ba5d614fb6f9f3d3ee333848e9774700ba (patch)
treef474806ce968874db270926dcb0399b7f3139d18 /django/project/urls.py
parentb77c06257f9b650e2274c7dcb8937c237353c64d (diff)
downloadpersonal-site-4317b0ba5d614fb6f9f3d3ee333848e9774700ba.tar.lz
personal-site-4317b0ba5d614fb6f9f3d3ee333848e9774700ba.tar.xz
personal-site-4317b0ba5d614fb6f9f3d3ee333848e9774700ba.zip
Add docker support
Diffstat (limited to 'django/project/urls.py')
-rw-r--r--django/project/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/django/project/urls.py b/django/project/urls.py
new file mode 100644
index 0000000..52e75fe
--- /dev/null
+++ b/django/project/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.home, name="home"),
+ # path('filename', views.i2pfile, name='i2pfile'),
+]