CICD/.gitlab-ci.yml

26 lines
404 B
YAML
Raw Permalink Normal View History

2021-10-28 11:04:47 +02:00
image: "python:3.7"
before_script:
- python --version
- pip install -r requirements.txt
stages:
- build
- deploy
build:
stage: build
script:
2021-10-28 11:28:27 +02:00
- pip install virtualenv
2021-10-28 11:04:47 +02:00
- virtualenv -p python3 venv
- source venv/bin/activate
- pip install -r requirements.txt
2021-10-28 11:50:04 +02:00
- echo "y" | python manage.py seed_db
2021-10-28 11:04:47 +02:00
deploy:
stage: deploy
dependencies:
- build
script:
- python wsgi.py