Skip to content

Commit 038b083

Browse files
author
JanKrb
committed
Upload frontend files
1 parent 93ae2fa commit 038b083

File tree

216 files changed

+58699
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+58699
-0
lines changed

.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[*.{js,jsx,ts,tsx,vue}]
2+
indent_style = space
3+
indent_size = 2
4+
trim_trailing_whitespace = true
5+
insert_final_newline = true

.env.sample

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
VUE_APP_NAME=Wiki
2+
VUE_APP_LOGO=
3+
VUE_APP_DESCRIPTION=Wiki
4+
VUE_APP_MINPASSWORD=6
5+
VUE_APP_DOMAIN=www.wiki.de
6+
VUE_APP_CONTACTMAIL=[email protected]
7+
VUE_APP_PAGETITLE=wiki.de -
8+
VUE_APP_SUPPORTLINK=help.wiki.de
9+
VUE_APP_DOCUMENTATIONLINK=docs.wiki.de
10+
VUE_APP_CONTACTLINK=contact.wiki.de
11+
12+
VUE_APP_SOCIAL_YOUTUBE=https://youtube.wiki.de/
13+
VUE_APP_SOCIAL_FACEBOOK=https://facebook.wiki.de/
14+
VUE_APP_SOCIAL_DISCORD=https://discord.wiki.de/
15+
VUE_APP_SOCIAL_TWITTER=https://twitter.wiki.de/
16+
VUE_APP_SOCIAL_INSTAGRAM=https://instagram.wiki.de/
17+
VUE_APP_SOCIAL_LINKEDIN=https://linkedin.wiki.de/
18+
19+
VUE_APP_BASE_URL=http://localhost:8000/api/
20+

.eslintrc.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
extends: ['plugin:vue/vue3-essential', '@vue/standard'],
7+
parserOptions: {
8+
parser: 'babel-eslint'
9+
},
10+
rules: {
11+
eqeqeq: 'off',
12+
'no-new': 'off',
13+
'no-unused-expressions': 'off',
14+
'space-before-function-paren': 'off',
15+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
16+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
17+
},
18+
globals: {
19+
cash: true
20+
}
21+
}

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.DS_Store
2+
node_modules
3+
4+
5+
# local env files
6+
.env
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

.gitkeep

Whitespace-only changes.

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"trailingComma": "none"
5+
}
6+

babel.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const removeConsolePlugin = []
2+
if (process.env.NODE_ENV === 'production') {
3+
removeConsolePlugin.push('transform-remove-console')
4+
}
5+
module.exports = {
6+
presets: [
7+
'@vue/cli-plugin-babel/preset'
8+
],
9+
plugins: removeConsolePlugin
10+
}

0 commit comments

Comments
 (0)