2020-03-30 18:15:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
2020-11-08 19:43:04 +00:00
|
|
|
function clean {
|
|
|
|
docker-compose stop
|
|
|
|
docker-compose rm -f
|
|
|
|
}
|
|
|
|
|
|
|
|
function runweb {
|
2020-11-08 21:07:37 +00:00
|
|
|
docker-compose run --rm web "$@"
|
2020-11-08 19:52:08 +00:00
|
|
|
clean
|
2020-11-08 19:43:04 +00:00
|
|
|
}
|
|
|
|
|
2020-11-09 01:30:47 +00:00
|
|
|
function execdb {
|
|
|
|
docker-compose exec db $@
|
|
|
|
}
|
|
|
|
|
|
|
|
function execweb {
|
|
|
|
docker-compose exec web "$@"
|
|
|
|
}
|
|
|
|
|
2020-11-08 19:50:20 +00:00
|
|
|
function initdb {
|
2020-11-09 01:30:47 +00:00
|
|
|
execweb python manage.py migrate
|
|
|
|
execweb python manage.py initdb
|
2020-11-08 19:50:20 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 18:15:36 +00:00
|
|
|
case "$1" in
|
2020-04-03 16:32:02 +00:00
|
|
|
up)
|
|
|
|
docker-compose up --build
|
|
|
|
;;
|
|
|
|
run)
|
2020-11-08 19:50:20 +00:00
|
|
|
docker-compose run --rm --service-ports web
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
|
|
|
initdb)
|
2020-11-08 19:50:20 +00:00
|
|
|
initdb
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
|
|
|
resetdb)
|
2020-11-08 19:43:04 +00:00
|
|
|
clean
|
2020-11-08 19:50:20 +00:00
|
|
|
docker-compose up --build -d
|
2020-11-09 01:30:47 +00:00
|
|
|
execdb dropdb -U fedireads fedireads
|
|
|
|
execdb createdb -U fedireads fedireads
|
2020-11-08 19:50:20 +00:00
|
|
|
initdb
|
|
|
|
clean
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
|
|
|
makemigrations)
|
2020-11-09 01:30:47 +00:00
|
|
|
execweb python manage.py makemigrations
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
|
|
|
migrate)
|
2020-11-09 01:30:47 +00:00
|
|
|
execweb python manage.py migrate
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
2020-11-08 20:14:57 +00:00
|
|
|
bash)
|
2020-11-09 01:30:47 +00:00
|
|
|
execweb bash
|
2020-11-08 20:14:57 +00:00
|
|
|
;;
|
2020-04-03 16:32:02 +00:00
|
|
|
shell)
|
2020-11-09 01:30:47 +00:00
|
|
|
execweb python manage.py shell
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
|
|
|
dbshell)
|
2020-11-09 01:30:47 +00:00
|
|
|
execdb psql -U fedireads fedireads
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
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-11-09 01:30:47 +00:00
|
|
|
execweb coverage run --source='.' --omit="*/test*,celerywyrm*,bookwyrm/migrations/*" manage.py test "$@"
|
2020-05-12 22:12:04 +00:00
|
|
|
;;
|
2020-11-08 20:14:57 +00:00
|
|
|
pytest)
|
|
|
|
shift 1
|
2020-11-09 01:30:47 +00:00
|
|
|
execweb pytest "$@"
|
2020-11-08 20:14:57 +00:00
|
|
|
;;
|
2020-05-12 22:12:04 +00:00
|
|
|
test_report)
|
2020-11-09 01:30:47 +00:00
|
|
|
execweb coverage report
|
2020-05-12 22:12:04 +00:00
|
|
|
;;
|
2020-09-28 21:47:53 +00:00
|
|
|
collectstatic)
|
2020-11-09 01:30:47 +00:00
|
|
|
execweb python manage.py collectstatic --no-input
|
2020-09-28 21:47:53 +00:00
|
|
|
;;
|
2020-11-08 18:29:33 +00:00
|
|
|
build)
|
|
|
|
docker-compose build
|
|
|
|
;;
|
|
|
|
clean)
|
2020-11-08 19:45:21 +00:00
|
|
|
clean
|
2020-11-08 18:29:33 +00:00
|
|
|
;;
|
2020-04-03 16:32:02 +00:00
|
|
|
*)
|
2020-11-08 20:14:57 +00:00
|
|
|
echo "Unrecognised command. Try: build, clean, up, initdb, resetdb, makemigrations, migrate, bash, shell, dbshell, restart_celery, test, pytest, test_report"
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
2020-03-30 18:15:36 +00:00
|
|
|
esac
|