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

Ayu Sudi #9

Open
wants to merge 2 commits 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
2 changes: 2 additions & 0 deletions client/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
> 1%
last 2 versions
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'
}
}
11 changes: 11 additions & 0 deletions client/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
favicon.ico,1568901643042,1e71457865f706dc865b49a54a86e193818220d290b30226b6630a42faf1535d
index.html,1568901643042,f1fc8f504fc7038c7100e40f63b95e5faa516fd6fba5d27a3fa7e48bce9d433b
css/app.ef38f71e.css,1568901643060,753403008be33b063d2e59c063ad4a4291843072defcdb595c8e021ad847b45e
img/logo.63a7d78d.svg,1568901643042,5efbc7f58835ba5cd0a1643731f4a1e709cb7e080e369a6ffd5b058e5ea90569
js/about.9f8effd1.js,1568901643059,59e4052841f1b471f49b5f80ba918ed3cdc35cd7b360d36834c193fcf4328228
js/about.9f8effd1.js.map,1568901643058,a2ff01046dd580407def56f9bd281da140ae9ebae956872a5266e6a9080b79c7
js/app.fd176b08.js,1568901643058,040ce7fc7dec11f87bbb984c2726408c4c3f7f8b894c8f2e755661da2b576e86
js/app.fd176b08.js.map,1568901643060,3d91ec877e8f4ed5dd02f7807ea014dacb52795f6eb1f98a1f8008a04f70a4ab
css/chunk-vendors.3a25e7eb.css,1568901643059,d1132cefe03e07dc138050ff60f53affd72c7cad96df4abee5b9cf36719233cb
js/chunk-vendors.f6c2f495.js,1568901643059,a1493a60fc2769fdf4d8218a1002ed9677262ac5b41e9fc205d903d7149853e2
js/chunk-vendors.f6c2f495.js.map,1568901643059,deed40803ce08cbd705cd5667a5d523d7295da922330d8bf4b1155e058ca5d48
5 changes: 5 additions & 0 deletions client/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "ayusudi-e52a2"
}
}
22 changes: 22 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.DS_Store
node_modules
/dist

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

# 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'
]
}
16 changes: 16 additions & 0 deletions client/firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
Loading