Skip to content

Commit 6a4f645

Browse files
--update django settings
1 parent e3ec017 commit 6a4f645

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

apps/backend-core/config/settings/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
elif "production" in settings_module:
4242
env_file = MONOREPO_ROOT / ".env.production"
4343
elif "local" in settings_module:
44-
env_file = MONOREPO_ROOT / ".env.local"
44+
env_file = MONOREPO_ROOT / ".env"
4545
else:
4646
env_file = MONOREPO_ROOT / ".env"
4747

apps/backend-core/unpod/apiV1/urls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
path('roles/', include('unpod.roles.urls'), name="roles_v1"),
1111
path('notifications/', include('unpod.notification.urls'), name="notification_v1"),
1212
path('knowledge_base/', include('unpod.knowledge_base.urls'), name="knowledge_base_v1"),
13+
path('tasks/', include('unpod.core_components.tasks.urls')),
1314
path('documents/', include('unpod.documents.urls'), name="documents"),
1415
path('metrics/', include('unpod.metrics.urls'), name="metrics"),
1516
path('dynamic-forms/', include('unpod.dynamic_forms.urls'), name="dynamic_forms_base"),

0 commit comments

Comments
 (0)