Skip to content
This repository was archived by the owner on Jun 10, 2023. It is now read-only.

Test #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
pipeline
{
agent
{
label 'retail'
}
//agent any
stages
{
// stage('Clone repository')
// {
// steps
// {
// script
// {
// withCredentials([file(credentialsId: 'search-console-env', variable: 'vars_data')])
// {
// sh "cp $vars_data .env"
// checkout scm
// }
// }
// }
// }
// stage('Build')
// {
// steps
// {
// script
// {
// sh "docker-compose down"
// sh "docker-compose build"
// // app = docker.image("dashboard-mf-ui:latest")
// }
// }
// }
stage('Deploy Dev')
{
steps
{
script
{
sh "echo hello"
}
}
}
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% if False %}

# Introduction
# Introduction to my project

The goal of this project is to provide minimalistic django project template that everyone can use, which _just works_ out of the box and has the basic setup you can expand on.

Expand Down