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

Ribka Haryuni #9

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 kanban/.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 kanban/.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 kanban/.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'
}
}
1 change: 1 addition & 0 deletions kanban/.firebase/hosting.ZGVwbG95.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
index.html,1545011821867,f6ff6ed3e0597560241a2eb880a9c1d674a4afe205b9437a62020e0c930bfba6
7 changes: 7 additions & 0 deletions kanban/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
favicon.ico,1548634770527,efd24a56239d255af28537949b97eb64b060ac198368fe3832f7d082cd34f091
index.html,1548634770527,331ac827edef94598ed0393996981cab14be6550117f02c27d5934b7b1611eff
css/app.d3ea7adf.css,1548634770527,2e016375706479765326f63f377c47dd22eb4a48e398ba03ca8a6d4286292e0a
js/app.8e7de51c.js,1548634770527,10847c920bfc4ede3f02077523b6c9c799bedc5200f4e4bf227e65822ef94945
js/app.8e7de51c.js.map,1548634770547,cddd15a05ffffeab7bd06f524387ad8b69cffee3445e20393f1fdc0e55487387
js/chunk-vendors.cd6861bc.js,1548634770547,7e5b0ed53b271b64f37193a4d03405484d2095c053be5bccda4309592a4614c0
js/chunk-vendors.cd6861bc.js.map,1548634770547,4700635a2a6e1c85aad527ee081132c5c0bba6dec7dfdfcc0ff23b2c2be87022
3 changes: 3 additions & 0 deletions kanban/.firebase/hosting.cHVibGlj.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
404.html,1545012457344,b7bab6b83fa074653ff28c8d2a64135d3434575f70a12ab3d3ba8080461b9537
favicon.ico,1544942211375,efd24a56239d255af28537949b97eb64b060ac198368fe3832f7d082cd34f091
index.html,1544942211375,530f89e6235fe94f0ab46a205cba84884de3f0c997279a6e51aefe11ac7158be
5 changes: 5 additions & 0 deletions kanban/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "kanban-270ea"
}
}
23 changes: 23 additions & 0 deletions kanban/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist

/src/assets/config.js

# 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*
30 changes: 30 additions & 0 deletions kanban/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# kanban
deploy url: https://kanban-270ea.firebaseapp.com/

## 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 kanban/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 kanban/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