Skip to content

Commit 44f8ec1

Browse files
committed
small fixes
1 parent 70ff302 commit 44f8ec1

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ init-mig:
2323
docker exec -it {{PROJECT_SLUG}}-django python manage.py migrate
2424

2525
mk-mig:
26-
cd web && docker exec -it {{PROJECT_SLUG}}-django python manage.py migrate && docker exec -it {{PROJECT_SLUG}}-django python manage.py migrate
26+
cd web && docker exec -it {{PROJECT_SLUG}}-django python manage.py makemigrations && docker exec -it {{PROJECT_SLUG}}-django python manage.py migrate
2727

2828

2929
key-pair:

web/settings/components/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,11 @@
131131
CORS_ALLOWED_ORIGINS = [
132132
"http://localhost",
133133
SITE_BASE_DOMAIN,
134-
"https://{{DOMAIN_STAGING}}",
135134
]
136135

137136
CSRF_TRUSTED_ORIGINS = [
138137
"http://localhost",
139138
SITE_BASE_DOMAIN,
140-
"https://{{DOMAIN_STAGING}}",
141139
]
142140

143141
ROOT_URLCONF = "web.urls"

0 commit comments

Comments
 (0)