fix formatting
Some checks reported errors
continuous-integration/drone/push Build encountered an error

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

@ -3,8 +3,8 @@ stages:
- deploy - deploy
variables: variables:
PY_COLORS: '1' PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: '1' ANSIBLE_FORCE_COLOR: "1"
ANSIBLE_PYTHON_INTERPRETER: auto_silent ANSIBLE_PYTHON_INTERPRETER: auto_silent
ANSIBLE_STDOUT_CALLBACK: debug ANSIBLE_STDOUT_CALLBACK: debug

View file

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

View file

@ -6,5 +6,5 @@ all:
ansible_host: 192.168.200.11 ansible_host: 192.168.200.11
ansible_port: 22 ansible_port: 22
ansible_user: root 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"' 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: web:
image: registry.alex-detsch.de/fem/radiator/radiator-web image: registry.alex-detsch.de/fem/radiator/radiator-web
restart: always restart: always
healthcheck: healthcheck:
test: "curl localhost" test: "curl localhost"
interval: "60s" interval: "60s"
timeout: "3s" timeout: "3s"
start_period: "5s" start_period: "5s"
retries: 3 retries: 3
stop_grace_period: 3s stop_grace_period: 3s
ports: ports:
- "1499:80" - "1499:80"

View file

@ -5,8 +5,8 @@
"dev": "vite", "dev": "vite",
"build": "vue-tsc --noEmit && vite build", "build": "vue-tsc --noEmit && vite build",
"serve": "vite preview", "serve": "vite preview",
"format": "npx prettier --write ./src/*", "format": "npx prettier --write .",
"check": "prettier --check ./src/*" "check": "prettier --check ."
}, },
"dependencies": { "dependencies": {
"@vueuse/core": "^4.7.0", "@vueuse/core": "^4.7.0",

View file

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