2020-03-30 18:15:36 +00:00
|
|
|
#!/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 "$@"
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
;;
|
|
|
|
initdb)
|
2020-11-08 19:50:20 +00:00
|
|
|
initdb
|
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-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-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-04-03 16:32:02 +00:00
|
|
|
*)
|
2020-11-09 04:17:52 +00:00
|
|
|
echo "Unrecognised command. Try: build, up, initdb, makemigrations, migrate, bash, shell, dbshell, restart_celery, update"
|
2020-04-03 16:32:02 +00:00
|
|
|
;;
|
2020-03-30 18:15:36 +00:00
|
|
|
esac
|