bookwyrm/fr-dev

60 lines
1.2 KiB
Text
Raw Normal View History

#!/bin/bash
set -e
set -x
2020-11-09 01:30:47 +00:00
function execdb {
docker-compose exec db $@
}
function execweb {
docker-compose exec web "$@"
}
function initdb {
2020-11-09 01:30:47 +00:00
execweb python manage.py migrate
execweb python manage.py initdb
}
case "$1" in
up)
docker-compose up --build
;;
initdb)
initdb
;;
makemigrations)
2020-11-09 01:30:47 +00:00
execweb python manage.py makemigrations
;;
migrate)
2020-11-09 01:30:47 +00:00
execweb python manage.py migrate
;;
2020-11-08 20:14:57 +00:00
bash)
2020-11-09 01:30:47 +00:00
execweb bash
;;
shell)
2020-11-09 01:30:47 +00:00
execweb python manage.py shell
;;
dbshell)
2020-11-09 01:30:47 +00:00
execdb psql -U fedireads fedireads
;;
restart_celery)
docker-compose restart celery_worker
;;
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
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-11-09 04:17:52 +00:00
echo "Unrecognised command. Try: build, up, initdb, makemigrations, migrate, bash, shell, dbshell, restart_celery, update"
;;
esac