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 2aa09af commit 076082a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,5 @@ test: install

@( \
source $(MYPROJECT_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 @@ -181,3 +181,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 @@ -118,7 +118,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 076082a

Please sign in to comment.