Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Muhammad Khevin Utama #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions client/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not ie <= 8
5 changes: 5 additions & 0 deletions client/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
17 changes: 17 additions & 0 deletions client/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'@vue/standard'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
parser: 'babel-eslint'
}
}
12 changes: 12 additions & 0 deletions client/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
404.html,1548641337894,05cbc6f94d7a69ce2e29646eab13be2c884e61ba93e3094df5028866876d18b3
favicon.ico,1548641288729,5b9697e19ccae2f16128536dbbab8f9d302dc67951e688c49f7c896eb5d9ee4d
index.html,1548641288729,e5d0279b8e86fe134694906e478318c32b9e64eba25acb7cf8d1b2f3e886a44d
css/app.cbd0c9e4.css,1548641288750,a45f67c6b21458368e83f5083b7d38cc04abf990447d0d5f3f461a494bea3720
js/about.0d02e657.js,1548641288730,1d7544b614b40683f44ee749133391a2fadc781b95da138673563c35222ef58a
js/about.0d02e657.js.map,1548641288780,4a7426c49d76d92104253bb40e0685682cd8c1abc2d2985ecc460d9e6a622f06
js/app.ccd262ce.js,1548641288780,a134c22f905c5adabce0f9d731abaa81dc03ae527c9d03d759c181b011cba39c
js/app.ccd262ce.js.map,1548641288781,8abbf295bcfe2cb53791baf5f8a82c65eb0b965951d9dfb6507ea55fb940d15d
img/logo1.0a6432f1.png,1548641288729,75f0a7ca344fd51210f59c0e8e31665c92af8fc74132f1bbd0c430c20d6cfcc5
css/chunk-vendors.1b9a10c5.css,1548641288781,22cd7e5ff7b831ea9bd9ad26feab5f6f1778d1437d783661fdf419d7a0fe87e6
js/chunk-vendors.9bfd71ff.js,1548641288781,e3ae96aa98ee0706e377f946e7ab8f4802fa4c387caf4d5d7f622bde5ba70f0c
js/chunk-vendors.9bfd71ff.js.map,1548641288783,aa0db3247f96bf1347f41df8204cf7b5db63f728e7b7a3a864e1b81ab09a2e69
5 changes: 5 additions & 0 deletions client/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "kanbanzai95"
}
}
21 changes: 21 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
29 changes: 29 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# client

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Run your tests
```
npm run test
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions client/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
}
10 changes: 10 additions & 0 deletions client/firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
}
Empty file added client/notes.md
Empty file.
Loading