2020-03-30 18:15:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
case "$1" in
|
2020-04-03 16:32:02 +00:00
|
|
|
up)
|
|
|
|
docker-compose up --build
|
|
|
|
;;
|
|
|
|
run)
|
|
|
|
docker-compose run --service-ports web
|
|
|
|
;;
|
|
|
|
initdb)
|
|
|
|
docker-compose exec web python manage.py migrate
|
|
|
|
docker-compose exec web python manage.py shell -c 'import init_db'
|
|
|
|
;;
|
|
|
|
makemigrations)
|
|
|
|
docker-compose exec web python manage.py makemigrations
|
|
|
|
;;
|
|
|
|
migrate)
|
|
|
|
docker-compose exec web python manage.py migrate
|
|
|
|
;;
|
|
|
|
shell)
|
|
|
|
docker-compose exec web python manage.py shell
|
|
|
|
;;
|
|
|
|
dbshell)
|
|
|
|
docker-compose exec db psql -U fedireads fedireads
|
|
|
|
;;
|
2020-04-20 16:10:44 +00:00
|
|
|
restart_celery)
|
|
|
|
docker-compose restart celery_worker
|
|
|
|
;;
|
2020-05-12 22:12:04 +00:00
|
|
|
test)
|
2020-05-15 10:17:46 +00:00
|
|
|
shift 1
|
2020-10-16 17:52:07 +00:00
|
|
|
docker-compose exec web coverage run --source='.' --omit="*/test*,celerywyrm*,bookwyrm/migrations/*" manage.py test "$@"
|
2020-05-12 22:12:04 +00:00
|
|
|
;;
|
|
|
|
test_report)
|
|
|
|
docker-compose exec web coverage report
|
|
|
|
;;
|
2020-09-28 21:47:53 +00:00
|
|
|
collectstatic)
|
2020-10-05 21:23:04 +00:00
|
|
|
docker-compose exec web python manage.py collectstatic --no-input
|
2020-09-28 21:47:53 +00:00
|
|
|
;;
|
2020-11-05 19:47:40 +00:00
|
|
|
update)
|
|
|
|
git pull
|
|
|
|
docker-compose exec web python manage.py migrate
|
|
|
|
docker-compose exec web python manage.py collectstatic --no-input
|
|
|
|
docker-compose restart
|
|
|
|
;;
|
2020-04-03 16:32:02 +00:00
|
|
|
*)
|
2020-11-05 19:47:40 +00:00
|
|
|
echo "Unrecognised command. Try: up, initdb, makemigrations, migrate, shell, dbshell, restart_celery, test, test_report, update"
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
2020-03-30 18:15:36 +00:00
|
|
|
esac
|