VBV-468: Remove DB drop on production environments
This commit is contained in:
parent
8cee1346c5
commit
af905090cc
50
README.md
50
README.md
|
|
@ -156,29 +156,47 @@ See https://github.com/i18next/i18next/issues/1691#issuecomment-968063348
|
||||||
for an explanation why this plural form is needed in French and Italian.
|
for an explanation why this plural form is needed in French and Italian.
|
||||||
But not in German and English.
|
But not in German and English.
|
||||||
|
|
||||||
## Deployment to CapRover
|
## Deployment and Environments
|
||||||
|
|
||||||
### CapRover Dev (vbv-lernwelt.control.iterativ.ch)
|
### Prod Environment on Azure
|
||||||
|
|
||||||
```
|
Bitbucket Pipelines name: prod-azure
|
||||||
# run deploy script
|
https://my.vbv-afa.ch/
|
||||||
./caprover_deploy.sh vbv-lernwelt
|
|
||||||
|
|
||||||
# of vbv-lernwelt is default value
|
Deployment step on Bitbucket Pipelines will build the Docker container for Azure.
|
||||||
./caprover_deploy.sh
|
It seems that right now, you have to make a manual step on Azure to use this new
|
||||||
```
|
Docker container and update it on Azure.
|
||||||
|
Please ask Lorenz for more information.
|
||||||
|
|
||||||
### CapRover Stage (myvbv-stage.iterativ.ch)
|
### CapRover vbv-develop
|
||||||
|
|
||||||
```
|
Bitbucket Pipelines name: develop
|
||||||
./caprover_deploy.sh myvbv-stage
|
https://vbv-develop.control.iterativ.ch/
|
||||||
```
|
|
||||||
|
|
||||||
### CapRover Prod (myvbv.iterativ.ch)
|
Deployment happens automatically on every push to develop branch.
|
||||||
|
|
||||||
|
### CapRover vbv-master
|
||||||
|
|
||||||
|
Bitbucket Pipelines name: master
|
||||||
|
https://vbv-master.control.iterativ.ch/
|
||||||
|
Deployment happens automatically on every push to master branch.
|
||||||
|
|
||||||
|
### CapRover myvbv-stage
|
||||||
|
|
||||||
|
Bitbucket Pipelines name: stage
|
||||||
|
https://myvbv-stage.control.iterativ.ch/
|
||||||
|
https://myvbv-stage.iterativ.ch/
|
||||||
|
|
||||||
|
Deployment happens manually via Bitbucket Pipelines
|
||||||
|
|
||||||
|
### CapRover myvbv (old prod)
|
||||||
|
|
||||||
|
Bitbucket Pipelines name: myvbv
|
||||||
|
https://myvbv.control.iterativ.ch/
|
||||||
|
https://myvbv.iterativ.ch/
|
||||||
|
|
||||||
|
Deployment happens manually via Bitbucket Pipelines
|
||||||
|
|
||||||
```
|
|
||||||
./caprover_deploy.sh myvbv
|
|
||||||
```
|
|
||||||
|
|
||||||
### CapRover feature branch deployment
|
### CapRover feature branch deployment
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,8 @@ echo "Deploy to $APP_NAME"
|
||||||
|
|
||||||
# create client for django
|
# create client for django
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
|
# "collectstatic" should run with "local" env even in other environments
|
||||||
IT_APP_ENVIRONMENT=local python server/manage.py collectstatic --no-input
|
IT_APP_ENVIRONMENT=local python server/manage.py collectstatic --no-input
|
||||||
|
|
||||||
if [[ "$APP_NAME" == "prod-azure" ]]; then
|
if [[ "$APP_NAME" == "prod-azure" ]]; then
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,6 @@ set -o errexit
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
set -o nounset
|
set -o nounset
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# N.B. If only .env files supported variable expansion...
|
# N.B. If only .env files supported variable expansion...
|
||||||
# export CELERY_BROKER_URL="${REDIS_URL}"
|
# export CELERY_BROKER_URL="${REDIS_URL}"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,17 @@
|
||||||
|
|
||||||
set -o errexit
|
set -o errexit
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
set -o nounset
|
|
||||||
|
|
||||||
# python /app/manage.py collectstatic --no-input --no-post-process
|
echo $IT_APP_ENVIRONMENT
|
||||||
|
|
||||||
# TODO remove after stabilisation
|
if [[ $IT_APP_ENVIRONMENT == dev* ]] || [[ $IT_FORCE_RESET_SCHEMA == "true" ]]; then
|
||||||
python /app/manage.py reset_schema
|
echo "IT_APP_ENVIRONMENT=$IT_APP_ENVIRONMENT; IT_FORCE_RESET_SCHEMA=$IT_FORCE_RESET_SCHEMA"
|
||||||
|
echo "Resetting the database schema."
|
||||||
|
python /app/manage.py reset_schema
|
||||||
|
else
|
||||||
|
echo "IT_APP_ENVIRONMENT=$IT_APP_ENVIRONMENT"
|
||||||
|
echo "Migrating the database schema. (no reset)"
|
||||||
|
python /app/manage.py migrate
|
||||||
|
fi
|
||||||
|
|
||||||
/usr/local/bin/gunicorn config.asgi --bind 0.0.0.0:7555 --chdir=/app -k uvicorn.workers.UvicornWorker
|
/usr/local/bin/gunicorn config.asgi --bind 0.0.0.0:7555 --chdir=/app -k uvicorn.workers.UvicornWorker
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,6 +1,5 @@
|
||||||
encrypted: env_secrets/caprover_dev.env
|
encrypted: env_secrets/caprover_myvbv-prod.env
|
||||||
encrypted: env_secrets/caprover_prod.env
|
encrypted: env_secrets/caprover_myvbv-stage.env
|
||||||
encrypted: env_secrets/caprover_stage.env
|
|
||||||
encrypted: env_secrets/local_chrigu.env
|
encrypted: env_secrets/local_chrigu.env
|
||||||
encrypted: env_secrets/local_daniel.env
|
encrypted: env_secrets/local_daniel.env
|
||||||
encrypted: env_secrets/local_elia.env
|
encrypted: env_secrets/local_elia.env
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue