mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
88 lines
1.7 KiB
Bash
Executable file
88 lines
1.7 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
function clean {
|
|
docker-compose stop
|
|
docker-compose rm -f
|
|
}
|
|
|
|
function runweb {
|
|
docker-compose run --rm web "$@"
|
|
clean
|
|
}
|
|
|
|
function execdb {
|
|
docker-compose exec db $@
|
|
}
|
|
|
|
function execweb {
|
|
docker-compose exec web "$@"
|
|
}
|
|
|
|
function initdb {
|
|
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
|
|
execdb dropdb -U fedireads fedireads
|
|
execdb createdb -U fedireads fedireads
|
|
initdb
|
|
clean
|
|
;;
|
|
makemigrations)
|
|
execweb python manage.py makemigrations
|
|
;;
|
|
migrate)
|
|
execweb python manage.py migrate
|
|
;;
|
|
bash)
|
|
execweb bash
|
|
;;
|
|
shell)
|
|
execweb python manage.py shell
|
|
;;
|
|
dbshell)
|
|
execdb psql -U fedireads fedireads
|
|
;;
|
|
restart_celery)
|
|
docker-compose restart celery_worker
|
|
;;
|
|
test)
|
|
shift 1
|
|
execweb coverage run --source='.' --omit="*/test*,celerywyrm*,bookwyrm/migrations/*" manage.py test "$@"
|
|
;;
|
|
pytest)
|
|
shift 1
|
|
execweb pytest "$@"
|
|
;;
|
|
test_report)
|
|
execweb coverage report
|
|
;;
|
|
collectstatic)
|
|
execweb python manage.py collectstatic --no-input
|
|
;;
|
|
build)
|
|
docker-compose build
|
|
;;
|
|
clean)
|
|
clean
|
|
;;
|
|
*)
|
|
echo "Unrecognised command. Try: build, clean, up, initdb, resetdb, makemigrations, migrate, bash, shell, dbshell, restart_celery, test, pytest, test_report"
|
|
;;
|
|
esac
|