pix360/.gitlab-ci.yml
2023-10-31 09:46:45 +01:00

11 lines
175 B
YAML

image: python:3.11
stages:
- build
build:
stage: build
script:
- pip install -r requirements.txt
- python manage.py migrate
- python manage.py runserver &