Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
working_directory: ~/normandy

environment:
COMPOSE_FILE: ci/docker-compose.yml
COMPOSE_FILE: ci/docker-compose.yml

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My vscode fixes yaml files automatically and although this is unrelated I don't think it hurts to correct.

@mythmon mythmon Oct 18, 2018

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the future it would be good to only include these kind of fixes to files that are already being changed in the PR. This change is more correct so lets keep it, but if we're going to have automatic fixes for these kind of files, we should add them as rules to Therapist instead of ad-hoc changes.


steps:
- checkout
Expand Down
3 changes: 3 additions & 0 deletions bin/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ case $1 in
first-start)
echo "Starting the gunicorn server the first time"
./manage.py migrate
./manage.py makemigrations --check --no-input --dry-run || (
echo "You probably have migrations that need to be created" && exit 1
)
./manage.py update_actions
start_gunicorn
;;
Expand Down