Commit a81a33d2652170debc37634ddcfbfbbdc3f2ee63
1 parent
289f85d9e9
Exists in
master
s
Showing
3 changed files
with
50 additions
and
1 deletions
Show diff stats
.gitignore
| ... | ... | @@ -0,0 +1,30 @@ |
| 1 | +.DS_Store | |
| 2 | +node_modules/ | |
| 3 | +unpackage/ | |
| 4 | +dist/ | |
| 5 | +babel.config.js | |
| 6 | +postcss.config.js | |
| 7 | +package-lock.json | |
| 8 | +tsconfig.json | |
| 9 | +yarn.lock | |
| 10 | +public/ | |
| 11 | + | |
| 12 | +# local env files | |
| 13 | +.env.local | |
| 14 | +.env.*.local | |
| 15 | + | |
| 16 | +# Log files | |
| 17 | +npm-debug.log* | |
| 18 | +yarn-debug.log* | |
| 19 | +yarn-error.log* | |
| 20 | + | |
| 21 | +# Editor directories and files | |
| 22 | +.project | |
| 23 | +.idea | |
| 24 | +.vscode | |
| 25 | +*.suo | |
| 26 | +*.ntvs* | |
| 27 | +*.njsproj | |
| 28 | +*.sln | |
| 29 | +*.sw* | |
| 30 | + | ... | ... |
README.md
| ... | ... | @@ -0,0 +1,19 @@ |
| 1 | +# gulu-vue | |
| 2 | + | |
| 3 | +## Project setup | |
| 4 | +``` | |
| 5 | +yarn install | |
| 6 | +``` | |
| 7 | + | |
| 8 | +### Compiles and hot-reloads for development | |
| 9 | +``` | |
| 10 | +yarn serve | |
| 11 | +``` | |
| 12 | + | |
| 13 | +### Compiles and minifies for production | |
| 14 | +``` | |
| 15 | +yarn build | |
| 16 | +``` | |
| 17 | + | |
| 18 | +### Customize configuration | |
| 19 | +See [Configuration Reference](https://cli.vuejs.org/config/). | ... | ... |