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 Savero #16

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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# kanban
# kanban

Link Deploy

https://kanban-orevas.firebaseapp.com/

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
4 changes: 4 additions & 0 deletions client/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
VUE_APP_API_KEY="AIzaSyD9-yXqesf5cTYAJdU0oQcGjtR2uZQGSm4"
VUE_APP_AUTH_DOMAIN="kanban-orevas.firebaseapp.com"
VUE_APP_PROJECT_ID="kanban-orevas"

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'
}
}
8 changes: 8 additions & 0 deletions client/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
index.html,1568820955846,50db9d2a6d648b1a99606be0c8f21835750dc6ccb4e100674832cb3ec2321ce8
css/app.791f0cef.css,1568820955873,8697d1eee4e86c80324374cfb7ded30c1768569e4698cd53684ff6fa4244db0c
favicon.ico,1568820955847,e0535b2041a7a1721cdec785c903980d41fdf0d810a4ea9726b6ffd1371bbc28
js/app.efc03558.js,1568820955905,56a86f152393825ea0f951873bfc0c2eb95d23a8708db5a0460d789d2bfcaa6c
js/app.efc03558.js.map,1568820955874,8870e50b780ab69b0ba939d348e96fce157e4a95df524199b744956b73118397
css/chunk-vendors.5bf451df.css,1568820955914,216ed9cc430bc617ae33f70d7638056cc7dcf12d8c1d03bc5678cff96b133a5f
js/chunk-vendors.58b45048.js,1568820955934,39b3dd10a0f538c23f6e20a52fd834ea379e7bd98149142aed238914bdaa256e
js/chunk-vendors.58b45048.js.map,1568820955969,7448ffb9081f48f607c36da9793eb3260a057933411319678f6be4321bf1454b
5 changes: 5 additions & 0 deletions client/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "kanban-orevas"
}
}
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'
]
}
3 changes: 3 additions & 0 deletions client/env_template.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
VUE_APP_API_KEY=
VUE_APP_AUTH_DOMAIN=
VUE_APP_PROJECT_ID=
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