-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Переписывание стилей на tailwind, обновление всех возможных зависимос…
…тей и исправление огромного количества проблем (#69)
- Loading branch information
Showing
87 changed files
with
4,793 additions
and
5,169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
version: "3.8" | ||
|
||
services: | ||
nuxt: | ||
container_name: wokalek-nuxt | ||
build: | ||
context: . | ||
dockerfile: docker/nuxt/prod.Dockerfile | ||
env_file: env/nuxt/.env | ||
depends_on: | ||
fonts: | ||
condition: service_completed_successfully | ||
volumes: | ||
- nuxt-devfolder:/nuxt/.nuxt | ||
- ./nuxt/src:/nuxt/src | ||
- ./static:/nuxt/.output/public/static | ||
|
||
nginx: | ||
container_name: wokalek-nginx | ||
user: root | ||
image: wokalek/nginx-brotli:1.25.2 | ||
depends_on: | ||
- nuxt | ||
ports: | ||
- 80:80 | ||
volumes: | ||
- ./nginx/conf/dev.conf:/etc/nginx/nginx.conf | ||
- ./nginx/snippets:/etc/nginx/snippets | ||
- ./static:/usr/share/nginx/html/static | ||
|
||
fonts: | ||
container_name: wokalek-fonts | ||
image: wokalek/glyphhanger:latest | ||
entrypoint: ["bash", "/build.sh"] | ||
volumes: | ||
- ./fonts/build.sh:/build.sh | ||
- ./nuxt/src/assets/fonts:/app | ||
|
||
volumes: | ||
nuxt-devfolder: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
TZ = Europe/Moscow | ||
|
||
DOMAIN = wokalek.ru | ||
|
||
NUXT_PUBLIC_UMAMI_HOST = https://statistic.wokalek.ru | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
map $http_upgrade $connection_upgrade { | ||
default upgrade; | ||
'' close; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
{ | ||
"root": true, | ||
"extends": [ | ||
"@nuxtjs", | ||
"@nuxtjs/eslint-config-typescript" | ||
], | ||
"rules": { | ||
"comma-dangle": ["error", "always-multiline"], | ||
"func-call-spacing": 0, | ||
"vue/multi-word-component-names": 0, | ||
"vue/no-multiple-template-root": 0, | ||
"vue/singleline-html-element-content-newline": 0 | ||
"vue/singleline-html-element-content-newline": 0, | ||
"vue/no-v-html": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.