.gitlab-ci.yml

This commit is contained in:
Kumi 2023-10-31 09:45:19 +01:00
parent e5788fa925
commit e5a1bd9c65
Signed by: kumi
GPG key ID: ECBCC9082395383F

11
pix360/.gitlab-ci.yml Normal file
View file

@ -0,0 +1,11 @@
image: python:3.11
stages:
- build
build:
stage: build
script:
- pip install -r requirements.txt
- python manage.py migrate
- python manage.py runserver &