fix formatting
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
d26edb058e
commit
160ed424ae
7 changed files with 21 additions and 19 deletions
|
@ -7,4 +7,4 @@ steps:
|
|||
commands:
|
||||
- npm install
|
||||
- npm run check
|
||||
- npm run build
|
||||
- npm run build
|
||||
|
|
|
@ -3,8 +3,8 @@ stages:
|
|||
- deploy
|
||||
|
||||
variables:
|
||||
PY_COLORS: '1'
|
||||
ANSIBLE_FORCE_COLOR: '1'
|
||||
PY_COLORS: "1"
|
||||
ANSIBLE_FORCE_COLOR: "1"
|
||||
ANSIBLE_PYTHON_INTERPRETER: auto_silent
|
||||
ANSIBLE_STDOUT_CALLBACK: debug
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# Ignore artifacts:
|
||||
build
|
||||
dist
|
||||
./src/assets/*
|
||||
coverage
|
|
@ -6,5 +6,5 @@ all:
|
|||
ansible_host: 192.168.200.11
|
||||
ansible_port: 22
|
||||
ansible_user: root
|
||||
ansible_ssh_extra_args: '-o StrictHostKeyChecking=no'
|
||||
ansible_ssh_extra_args: "-o StrictHostKeyChecking=no"
|
||||
ansible_ssh_common_args: '-o ProxyCommand="ssh -o StrictHostKeyChecking=no -i "${ANSIBLE_SSH_KEY_PRIVATE}" -W %h:%p root@vserver8.alex-detsch.de -p 52"'
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
web:
|
||||
image: registry.alex-detsch.de/fem/radiator/radiator-web
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: "curl localhost"
|
||||
interval: "60s"
|
||||
timeout: "3s"
|
||||
start_period: "5s"
|
||||
retries: 3
|
||||
stop_grace_period: 3s
|
||||
ports:
|
||||
- "1499:80"
|
||||
image: registry.alex-detsch.de/fem/radiator/radiator-web
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: "curl localhost"
|
||||
interval: "60s"
|
||||
timeout: "3s"
|
||||
start_period: "5s"
|
||||
retries: 3
|
||||
stop_grace_period: 3s
|
||||
ports:
|
||||
- "1499:80"
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
"dev": "vite",
|
||||
"build": "vue-tsc --noEmit && vite build",
|
||||
"serve": "vite preview",
|
||||
"format": "npx prettier --write ./src/*",
|
||||
"check": "prettier --check ./src/*"
|
||||
"format": "npx prettier --write .",
|
||||
"check": "prettier --check ."
|
||||
},
|
||||
"dependencies": {
|
||||
"@vueuse/core": "^4.7.0",
|
||||
|
|
|
@ -4,6 +4,6 @@ import vue from "@vitejs/plugin-vue";
|
|||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
define: {
|
||||
__VUE_OPTIONS_API__: false
|
||||
}
|
||||
__VUE_OPTIONS_API__: false,
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue