Pipfile script for migrations

This commit is contained in:
reverend 2021-07-16 13:08:42 +02:00
parent 170971c44b
commit ccd701ea60
2 changed files with 2 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -2,7 +2,7 @@ pipeline {
agent { agent {
docker { docker {
image 'kennethreitz/pipenv' image 'kennethreitz/pipenv'
args "--user root --privileged" args '--user root --privileged'
} }
} }

View File

@ -25,3 +25,4 @@ test = "django_lostplaces/manage.py test lostplaces"
server = "django_lostplaces/manage.py runserver --ipv6" server = "django_lostplaces/manage.py runserver --ipv6"
dbshell = "django_lostplaces/manage.py dbshell" dbshell = "django_lostplaces/manage.py dbshell"
showmigrations = "django_lostplaces/manage.py showmigrations" showmigrations = "django_lostplaces/manage.py showmigrations"
makemigrations = "django_lostplaces/manage.py makemigrations --no-input"