feat: initial work for DCA tool

This commit is contained in:
Herculino Trotta
2024-11-12 00:13:27 -03:00
parent eab04ad298
commit 7ebe3b6b5b
13 changed files with 576 additions and 0 deletions
+1
View File
@@ -71,6 +71,7 @@ INSTALLED_APPS = [
"django_cotton",
"apps.rules.apps.RulesConfig",
"apps.calendar_view.apps.CalendarViewConfig",
"apps.dca.apps.DcaConfig",
]
MIDDLEWARE = [
+1
View File
@@ -45,4 +45,5 @@ urlpatterns = [
path("", include("apps.currencies.urls")),
path("", include("apps.rules.urls")),
path("", include("apps.calendar_view.urls")),
path("", include("apps.dca.urls")),
]