21 lines
482 B
Bash
Executable File
21 lines
482 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# needed for some tests
|
|
export LC_ALL=C.UTF-8
|
|
export LANG=C.UTF-8
|
|
|
|
export OPENSSL_CONF=/etc/ssl/
|
|
|
|
python -m venv vbvvenv
|
|
source vbvvenv/bin/activate
|
|
export PATH="$PWD/vbvvenv/bin:$PATH"
|
|
|
|
docker login --username=iterativ --password=$DOCKER_PASSWORD_TOKEN
|
|
|
|
# only used for `python manage.py collectstatic` so value doesn't matter
|
|
export IT_APP_ENVIRONMENT=development
|
|
|
|
pip install -r $BITBUCKET_CLONE_DIR/server/requirements/requirements-dev.txt
|
|
|
|
npm install -g caprover
|