1
0
Fork 0
bookwyrm/fr-dev

89 lines
1.7 KiB
Text
Raw Normal View History

#!/bin/bash
set -e
set -x
function clean {
docker-compose stop
docker-compose rm -f
}
function runweb {
docker-compose run --rm web "$@"
clean
}
2020-11-08 17:30:47 -08:00
function execdb {
docker-compose exec db $@
}
function execweb {
docker-compose exec web "$@"
}
function initdb {
2020-11-08 17:30:47 -08:00
execweb python manage.py migrate
execweb python manage.py initdb
}
case "$1" in
up)
docker-compose up --build
;;
run)
docker-compose run --rm --service-ports web
;;
initdb)
initdb
;;
resetdb)
clean
docker-compose up --build -d
2020-11-08 17:30:47 -08:00
execdb dropdb -U fedireads fedireads
execdb createdb -U fedireads fedireads
initdb
clean
;;
makemigrations)
2020-11-08 17:30:47 -08:00
execweb python manage.py makemigrations
;;
migrate)
2020-11-08 17:30:47 -08:00
execweb python manage.py migrate
;;
2020-11-08 12:14:57 -08:00
bash)
2020-11-08 17:30:47 -08:00
execweb bash
2020-11-08 12:14:57 -08:00
;;
shell)
2020-11-08 17:30:47 -08:00
execweb python manage.py shell
;;
dbshell)
2020-11-08 17:30:47 -08:00
execdb psql -U fedireads fedireads
;;
restart_celery)
docker-compose restart celery_worker
;;
test)
2020-05-15 11:17:46 +01:00
shift 1
2020-11-08 17:30:47 -08:00
execweb coverage run --source='.' --omit="*/test*,celerywyrm*,bookwyrm/migrations/*" manage.py test "$@"
;;
2020-11-08 12:14:57 -08:00
pytest)
shift 1
2020-11-08 17:30:47 -08:00
execweb pytest "$@"
2020-11-08 12:14:57 -08:00
;;
test_report)
2020-11-08 17:30:47 -08:00
execweb coverage report
;;
2020-09-28 14:47:53 -07:00
collectstatic)
2020-11-08 17:30:47 -08:00
execweb python manage.py collectstatic --no-input
2020-09-28 14:47:53 -07:00
;;
2020-11-08 10:29:33 -08:00
build)
docker-compose build
;;
clean)
2020-11-08 11:45:21 -08:00
clean
2020-11-08 10:29:33 -08:00
;;
*)
2020-11-08 12:14:57 -08:00
echo "Unrecognised command. Try: build, clean, up, initdb, resetdb, makemigrations, migrate, bash, shell, dbshell, restart_celery, test, pytest, test_report"
;;
esac