Some CI stuff to start with

This commit is contained in:
Kumi 2023-10-31 10:28:03 +01:00
parent f776d3e91c
commit 1e82d4a7f0
Signed by: kumi
GPG key ID: ECBCC9082395383F

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
stages:
- test
test:
stage: test
script:
- git clone https://kumig.it/kumisystems/pix360.git project
- cd project
- pip install -Ur requirements.txt
- pip install ..
- python manage.py migrate
- python manage.py installmodules
- python manage.py runserver &