Commit 47ebb10c by Chif Gergő

Fix ci error

parent 2cec3080
Pipeline #1159 failed with stage
in 1 minute 51 seconds
......@@ -14,6 +14,6 @@ test:
- pip install pipenv
- pipenv install -d
- mv environment.sh.example environment.sh
- source environment.sh
- pipenv run source environment.sh
- cd recircle
- pipenv run python manage.py test
# This file sets the environment variables in bare metal or
# Virtual machine deployment
# If you prefer deploy with docker, than use the .env file instead this
export DJANGO_SECRET = "very very secret key"
export DJANGO_SECRET="very very secret key"
# settings.local for development and testing
# settings.production for production deployment
export DJANGO_SETTINGS_MODULE="myproject.settings.local"
# If using other database than sqlite3 (only use sqlite for development!)
# Provide the db credentials here
export DATABASE_PASSWORD="database_password"
export DATABASE_USER="user"
export DATABASE_NAME="user"
export DATABASE_HOST="hostname_of_batabase"
# For channels communication and periodic tasks we need a redis server
export REDIS_HOST="redis_host"
# OpenStack credentials
# In development we recommend using a DevStack installation
# These settings displayed in an admin dashboard or
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment