new: first commit !minor

This commit is contained in:
cătălin 2021-01-25 02:27:02 +01:00
commit 5848134067
45 changed files with 2754 additions and 0 deletions

15
.drone.yml Normal file
View file

@ -0,0 +1,15 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: install
image: debian:buster
commands:
- apt-get update -y
- apt-get -y install python3.7 python3.7-dev python curl python3.7-distutils
- curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
- ~/.poetry/bin/poetry install
- ~/.poetry/bin/poetry run python ./manage.py migrate
- ~/.poetry/bin/poetry run python ./manage.py test