diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..d4d8687 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,22 @@ +{ + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#fbed80", + "activityBar.activeBorder": "#06b9a5", + "activityBar.background": "#fbed80", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#06b9a5", + "activityBarBadge.foreground": "#15202b", + "sash.hoverBorder": "#fbed80", + "statusBar.background": "#f9e64f", + "statusBar.foreground": "#15202b", + "statusBarItem.hoverBackground": "#f7df1e", + "statusBarItem.remoteBackground": "#f9e64f", + "statusBarItem.remoteForeground": "#15202b", + "titleBar.activeBackground": "#f9e64f", + "titleBar.activeForeground": "#15202b", + "titleBar.inactiveBackground": "#f9e64f99", + "titleBar.inactiveForeground": "#15202b99" + }, + "peacock.color": "#f9e64f" +} \ No newline at end of file diff --git a/api/api/settings.py b/api/api/settings.py index bf56579..a376ac9 100644 --- a/api/api/settings.py +++ b/api/api/settings.py @@ -29,12 +29,13 @@ SECRET_KEY = env("SECRET_KEY", default='django-insecure-7uajhmbt^@)mklk1ur=slkmn # SECURITY WARNING: don't run with debug turned on in production! DEBUG = env("DEBUG") -ALLOWED_HOSTS = ["192.168.1.187", "192.168.1.23"] +ALLOWED_HOSTS = ["127.0.0.1", "192.168.1.187", "192.168.1.23"] # Application definition INSTALLED_APPS = [ + 'jet', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', diff --git a/api/api/urls.py b/api/api/urls.py index 5d1b74e..4cac83e 100644 --- a/api/api/urls.py +++ b/api/api/urls.py @@ -24,6 +24,7 @@ urlpatterns = [ # url(r'^$', view=TemplateView.as_view(template_name='bills/home.html')), # url(r'^$', view=TemplateView.as_view(template_name='main_api/home.html')), path('', views.index, name='index'), + path('jet/', include('jet.urls', 'jet')), path('bills/', include('bills.urls')), path('admin/', admin.site.urls), ] diff --git a/requirements.txt b/requirements.txt index 655a1cc..a14c4cf 100644 Binary files a/requirements.txt and b/requirements.txt differ