forked from mirrors/bookwyrm
Move fr-dev to bw-dev and alias it as fr-dev
This commit is contained in:
parent
3eb443c139
commit
e4f2625b02
2 changed files with 92 additions and 91 deletions
91
bw-dev
Executable file
91
bw-dev
Executable file
|
@ -0,0 +1,91 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# import our ENV variables
|
||||||
|
source .env
|
||||||
|
|
||||||
|
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 ${POSTGRES_USER} ${POSTGRES_DB}
|
||||||
|
execdb createdb -U ${POSTGRES_USER} ${POSTGRES_DB}
|
||||||
|
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 ${POSTGRES_USER} ${POSTGRES_DB}
|
||||||
|
;;
|
||||||
|
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
|
91
fr-dev
91
fr-dev
|
@ -1,91 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# import our ENV variables
|
|
||||||
source .env
|
|
||||||
|
|
||||||
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 ${POSTGRES_USER} ${POSTGRES_DB}
|
|
||||||
execdb createdb -U ${POSTGRES_USER} ${POSTGRES_DB}
|
|
||||||
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 ${POSTGRES_USER} ${POSTGRES_DB}
|
|
||||||
;;
|
|
||||||
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
|
|
1
fr-dev
Symbolic link
1
fr-dev
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
bw-dev
|
Loading…
Reference in a new issue