fix formatting
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
garionion 2021-04-08 14:27:50 +02:00
parent d26edb058e
commit 160ed424ae
Signed by: garionion
GPG Key ID: 53352FA607FA681A
7 changed files with 21 additions and 19 deletions

View File

@ -7,4 +7,4 @@ steps:
commands:
- npm install
- npm run check
- npm run build
- npm run build

View File

@ -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

View File

@ -1,3 +1,5 @@
# Ignore artifacts:
build
dist
./src/assets/*
coverage

View File

@ -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"'

View File

@ -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"

View File

@ -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",

View File

@ -4,6 +4,6 @@ import vue from "@vitejs/plugin-vue";
export default defineConfig({
plugins: [vue()],
define: {
__VUE_OPTIONS_API__: false
}
__VUE_OPTIONS_API__: false,
},
});