diff --git a/.gitignore b/.gitignore index bf201b3..a1c4f66 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ env/ .vscode/ +./frontend/App.test.js + # backened # /backend/secret_settings.py diff --git a/backend/backend/settings.py b/backend/backend/settings.py index 0ee58b5..e935077 100644 --- a/backend/backend/settings.py +++ b/backend/backend/settings.py @@ -25,7 +25,6 @@ DEBUG = True ALLOWED_HOSTS = [] - # Application definition INSTALLED_APPS = [ @@ -141,5 +140,7 @@ STATIC_URL = '/static/' DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' CORS_ORIGIN_WHITELIST = [ + 'https://vytal.io', + 'https://z0ccc.github.io', 'http://localhost:3000' ]