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: ...@@ -14,6 +14,6 @@ test:
- pip install pipenv - pip install pipenv
- pipenv install -d - pipenv install -d
- mv environment.sh.example environment.sh - mv environment.sh.example environment.sh
- source environment.sh - pipenv run source environment.sh
- cd recircle - cd recircle
- pipenv run python manage.py test - pipenv run python manage.py test
# This file sets the environment variables in bare metal or # This file sets the environment variables in bare metal or
# Virtual machine deployment # Virtual machine deployment
# If you prefer deploy with docker, than use the .env file instead this # 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.local for development and testing
# settings.production for production deployment # settings.production for production deployment
export DJANGO_SETTINGS_MODULE="myproject.settings.local" export DJANGO_SETTINGS_MODULE="myproject.settings.local"
# If using other database than sqlite3 (only use sqlite for development!) # If using other database than sqlite3 (only use sqlite for development!)
# Provide the db credentials here # Provide the db credentials here
export DATABASE_PASSWORD="database_password" export DATABASE_PASSWORD="database_password"
export DATABASE_USER="user" export DATABASE_USER="user"
export DATABASE_NAME="user" export DATABASE_NAME="user"
export DATABASE_HOST="hostname_of_batabase" export DATABASE_HOST="hostname_of_batabase"
# For channels communication and periodic tasks we need a redis server # For channels communication and periodic tasks we need a redis server
export REDIS_HOST="redis_host" export REDIS_HOST="redis_host"
# OpenStack credentials # OpenStack credentials
# In development we recommend using a DevStack installation # In development we recommend using a DevStack installation
# These settings displayed in an admin dashboard or # 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