Skip to content

Commit

Permalink
Fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Mar 5, 2024
1 parent 41b7daa commit a1f2227
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Makefile.template
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,5 @@ migrate: install
test: install
( \
source $({%PROJECT_ID_UPPER%}_VENV)/bin/activate; \
coverage run manage.py test; \
coverage report && coverage html && coverage xml; \
coverage run manage.py test && coverage report && coverage html && coverage xml; \
)
4 changes: 4 additions & 0 deletions conf/configs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,7 @@
},
},
}

# Server

USE_NGROK = os.environ.get("USE_NGROK", "False") == "True" and os.environ.get("RUN_MAIN", None) != "true"
4 changes: 0 additions & 4 deletions conf/configs/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,3 @@

common.PIPELINE["CSS_COMPRESSOR"] = None
common.PIPELINE["JS_COMPRESSOR"] = None

# Server

USE_NGROK = os.environ.get("USE_NGROK", "False") == "True" and os.environ.get("RUN_MAIN", None) != "true"

0 comments on commit a1f2227

Please sign in to comment.