-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1216 from fecgov/release/sprint-51
Release/sprint 51
- Loading branch information
Showing
36 changed files
with
206 additions
and
752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
cd django-backend | ||
|
||
# Run migrations and application | ||
./manage.py migrate --no-input --traceback --verbosity 3 && | ||
python manage.py create_committee_views && | ||
exec gunicorn --bind 0.0.0.0:8080 fecfiler.wsgi -w 9 | ||
# Only Instance 0 runs migrations and creates views | ||
echo "------ Starting APP ------" | ||
if [ $CF_INSTANCE_INDEX = "0" ]; then | ||
echo "----- Migrating Database -----" | ||
python manage.py migrate --no-input --traceback --verbosity 3 | ||
echo "----- Creating committee views -----" | ||
python manage.py create_committee_views | ||
fi | ||
|
||
# Run application | ||
exec gunicorn --bind 0.0.0.0:8080 fecfiler.wsgi -w 9 |
Empty file.
116 changes: 0 additions & 116 deletions
116
django-backend/fecfiler/authentication/migrations/0001_initial.py
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.