From 1e82d4a7f056c9cbda8ddcaf30b2641b4f5a3a87 Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 31 Oct 2023 10:28:03 +0100 Subject: [PATCH] Some CI stuff to start with --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..9c3ec55 --- /dev/null +++ b/.gitlab-ci.yml @@ -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 &