Compare commits

...

2 Commits

Author SHA1 Message Date
becca344bf Merge branch 'main' of http://14.103.237.41:16001/xiaji/central-task 2025-12-11 13:29:54 +08:00
527cb1dc3e 修改了admin的入口地址 2025-12-11 13:17:19 +08:00
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
# Virtual environments
.env
venv/
.venv/
env/

View File

@@ -21,7 +21,7 @@ from django.conf.urls.static import static
from tasks.views_frontend import index
urlpatterns = [
path('admin/', admin.site.urls),
path('houtai/', admin.site.urls),
path('api/', include('tasks.urls')),
# Root URL points to home page
path('', index, name='index'),