11 lines
175 B
YAML
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 &
|