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

Arona Nur Tetulis #24

Open
wants to merge 16 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
1,135 changes: 1,134 additions & 1 deletion README.md

Large diffs are not rendered by default.

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
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',
'eslint:recommended'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}
}
16 changes: 16 additions & 0 deletions client/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
index.html,1582824584245,a1261a79bb5c68ffa2d3548f76a301fc5b702eea9cfccf9360357461184ee90e
css/app.7752941a.css,1582824584245,48a418fb78858911e379a97bc75033e12f903da39998a3de188f1db41497ba8d
favicon.ico,1582824584265,e0535b2041a7a1721cdec785c903980d41fdf0d810a4ea9726b6ffd1371bbc28
js/chunk-0384e4a0.661375c6.js,1582824584265,99458c063fce70ba50ce4405d7003c7fbbf12679c38a343f5fa6e65b392861bf
js/chunk-2d0c8234.adb53e67.js,1582824584265,e8172f41936c38805c6bfeaf0cc2f9d2c7f3ec4c096da56f7e0093bcaa196cc9
js/app.45b784f1.js,1582824584245,e2eadf380ed2d14fff40e62df7410566b19a8936cc3c726e04586da82432ec90
js/chunk-2d0c8234.adb53e67.js.map,1582824584265,7242df24a84d2be4c603865986833d709d5cfdf958685703f808446cf75389e5
js/chunk-2d225633.8deae96d.js,1582824584265,08009cdb36ba2bfd188a02ab2f29978446aef8bf0a42c45737fa37d0d80098e3
js/chunk-2d225633.8deae96d.js.map,1582824584265,94342b0bc44ca1614408e616aad47d02d54c34d10791262c8cdc7ee3ad48c335
js/chunk-6b378168.82efb136.js,1582824584265,a3832eb6539695d6f3a1c3cfbf5f131efed8822937e62818c55969670974cd8a
js/chunk-0384e4a0.661375c6.js.map,1582824584265,b1a015db9e88527c023c85284ccbb62f2d3c4c5adc6a55396ca7ac940e27b269
js/chunk-6b378168.82efb136.js.map,1582824584265,ca884a0fda303078414ca45e5f1da92df7b26acbb1a706e9051f039e72b20cec
js/app.45b784f1.js.map,1582824584265,2f403a309d979d17f83f201e50d147b8cde85cff44ca4986af49c90ead01f4a1
css/chunk-vendors.f6f30965.css,1582824584265,6dc5bdd6f3a355c993dbe9e8105328084ae906a9182aa99d2971f805bbe5c39f
js/chunk-vendors.c0349744.js,1582824584265,e04544677d0837bdd8bc25bbc6d887e5b3ce74ea69f101f58eecf6d0bf23d39c
js/chunk-vendors.c0349744.js.map,1582824584265,c5648bc5e169c8575ee5bf7a95ed0c70f22ef118b0f8dc7cd8400d26c04504f4
5 changes: 5 additions & 0 deletions client/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "disekrip-commerce-cms"
}
}
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?
24 changes: 24 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# client

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

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

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

### 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/cli-plugin-babel/preset'
]
}
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