.gitlab-ci.yml
This commit is contained in:
parent
e5788fa925
commit
e5a1bd9c65
1 changed files with 11 additions and 0 deletions
11
pix360/.gitlab-ci.yml
Normal file
11
pix360/.gitlab-ci.yml
Normal 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 &
|
Loading…
Reference in a new issue