khaganat-web/.gitlab-ci.yml

25 lines
392 B
YAML
Raw Normal View History

2019-07-31 14:58:13 +00:00
stages:
- build
Build CSS:
stage: build
tags:
- Docker
image: "python:latest"
variables:
PIPENV_VENV_IN_PROJECT: 1
script:
- apt-get update
- apt-get -y upgrade
- apt-get install -y nodejs npm
- pip3 install pipenv
2020-02-28 18:06:37 +00:00
2019-07-31 14:58:13 +00:00
- pipenv --three update
- pipenv install django
- pipenv install django-bulma
2020-02-28 18:06:37 +00:00
- echo "KHAGANAT_SECRET_KEY= build" > .env