Skip to content

Commit

Permalink
docker env update
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Jul 6, 2024
1 parent 9c0a66f commit 2164401
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion fishauctions/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
try:
from . import customsettings
except:
print("You can set your envionrment using a customsettings.py file. No file found, or file is invalid, assuming the environment has been set some other way.")
pass
#print("You can set your envionrment using a customsettings.py file. No file found, or file is invalid, assuming the environment has been set some other way.")
import datetime

# Build paths inside the project like this: BASE_DIR / 'subdir'.
Expand Down
2 changes: 1 addition & 1 deletion nginx/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e

until curl -s "http://web:8000" >/dev/null; do
until curl -s "web:8000" >/dev/null; do
>&2 echo "waiting for Django"
sleep 1
done
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ defusedxml==0.7.1
# via
# -r requirements.in
# python3-openid
django>=5.0.6
django>=4.2.13
# via
# -r requirements.in
# channels
Expand Down

0 comments on commit 2164401

Please sign in to comment.