Compare commits
2 Commits
develop
...
52e55c569e
| Author | SHA1 | Date | |
|---|---|---|---|
| 52e55c569e | |||
| f819c6d708 |
4
.vscode/extensions.json
vendored
Normal file
4
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"recommendations": ["astro-build.astro-vscode", "unifiedjs.vscode-mdx"],
|
||||
"unwantedRecommendations": []
|
||||
}
|
||||
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"command": "./node_modules/.bin/astro dev",
|
||||
"name": "Development server",
|
||||
"request": "launch",
|
||||
"type": "node-terminal"
|
||||
}
|
||||
]
|
||||
}
|
||||
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
@@ -1,9 +1,8 @@
|
||||
pipeline {
|
||||
agent any
|
||||
environment {
|
||||
DOCKER_HOST = "unix:///run/user/1001/docker.sock"
|
||||
DOCKER_HOST = "unix:///var/run/docker.sock"
|
||||
APP_VERSION = "${env.BRANCH_NAME}-${env.BUILD_NUMBER}"
|
||||
DOCKER_CONFIG = "${env.WORKSPACE}/.docker"
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
|
||||
Reference in New Issue
Block a user