diff options
Diffstat (limited to 'docker-scripts/setup.sh')
| -rwxr-xr-x | docker-scripts/setup.sh | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/docker-scripts/setup.sh b/docker-scripts/setup.sh index e036aa8..6e4ff18 100755 --- a/docker-scripts/setup.sh +++ b/docker-scripts/setup.sh @@ -11,16 +11,11 @@ docker run --rm -it \ cd /app; export CUSTOM_CONFIG=config-compose.yml echo "create database dispatch;" | psql -U postgres -h postgres - python3 ./manage.py collectstatic + python3 ./manage.py collectstatic --no-input python3 ./manage.py migrate - python3 ./manage.py createsuperuser - - v="" - while ! [ "$v" = "done" ] ; do - printf "Please login to the system and fill out the form," - printf "then come back, type \"done\" to continue:\t" - read v; - done + # python3 ./manage.py createsuperuser + python3 ./manage.py setup + python3 ./manage.py setup_identity python3 ./manage.py insert_fake_data --companies 10 --users 10 \ --loads 400 --start-date='"'"'-16w'"'"' --end-date='"'"'+16w'"'"' \ |
