Added Jenkinsfile

This commit is contained in:
nell
2024-07-24 09:04:31 +00:00
parent 02b43f9ff3
commit 67e48e5697

3
Jenkinsfile vendored
View File

@@ -8,7 +8,8 @@ pipeline {
stages { stages {
stage('install_dep') { stage('install_dep') {
steps { steps {
sh 'pip install -r requirements/dev.txt && python manage.py migrate' sh '''pip install -r requirements/dev.txt
&& cp .env.sample .env && python manage.py migrate'''
} }
} }