Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old ary from requirements #1416

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions deep/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
DJANGO_SECRET_KEY=str,
DEEP_ENVIRONMENT=(str, 'development'),
SERVICE_ENVIRONMENT_TYPE=str,
DEEP_FRONTEND_ARY_HOST=str,
DEEP_FRONTEND_HOST=str,
DEEP_BACKEND_HOST=str,
DJANGO_ALLOWED_HOST=str,
Expand Down Expand Up @@ -117,7 +116,6 @@
ALLOWED_HOSTS = ['web', env('DJANGO_ALLOWED_HOST')]

DEEPER_FRONTEND_HOST = env('DEEP_FRONTEND_HOST')
DEEPER_FRONTEND_ARY_HOST = env('DEEP_FRONTEND_ARY_HOST') # TODO: Remove this later
DJANGO_API_HOST = env('DEEP_BACKEND_HOST')

DEEPER_SITE_NAME = env('DEEPER_SITE_NAME')
Expand Down Expand Up @@ -904,7 +902,6 @@ def log_render_extra_context(record):
# CSRF_COOKIE_HTTPONLY = True
CSRF_TRUSTED_ORIGINS = [
DEEPER_FRONTEND_HOST,
DEEPER_FRONTEND_ARY_HOST, # TODO: Remove this later
DJANGO_API_HOST,
]

Expand Down
1 change: 0 additions & 1 deletion gh-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ services:
DEEP_ENVIRONMENT: development
DJANGO_SECRET_KEY: "XXXXXXXXXXXXXXXXXXXXXXXXXX"
DEEP_FRONTEND_HOST: localhost:3000
DEEP_FRONTEND_ARY_HOST: localhost:3001
DEEP_BACKEND_HOST: localhost:8000
DJANGO_ALLOWED_HOST: localhost
SESSION_COOKIE_DOMAIN: localhost
Expand Down
Loading