Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fajarbc/learn-vue3-basic
Just an example project for learning Basic of Vue3
https://github.com/fajarbc/learn-vue3-basic
cicd vue vue3 vuejs
Last synced: about 1 month ago
JSON representation
Just an example project for learning Basic of Vue3
- Host: GitHub
- URL: https://github.com/fajarbc/learn-vue3-basic
- Owner: fajarbc
- Created: 2021-11-01T01:14:46.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-20T12:39:11.000Z (over 2 years ago)
- Last Synced: 2023-03-06T04:17:56.274Z (almost 2 years ago)
- Topics: cicd, vue, vue3, vuejs
- Language: Vue
- Homepage: https://fajarbc.github.io/learn-vue3-basic/
- Size: 1.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-crash-2021
Just an example project for learning Basic of Vue3.
Demo available here [https://github.fajarbc.com/learn-vue3-basic/](https://github.fajarbc.com/learn-vue3-basic/)## Project setup
1. Install dependency
```
npm install
```
2. Copy `.env` to `.env.local`
```
cp .env .env.local
```
3. Copy `db-example.json` to `db.json`
```
cp db-example.json db.json
```
4. (optional) Copy `json-server-routes-example.json` to `json-server-routes.json`. I need this for the backend server
```
cp json-server-routes-example.json json-server-routes.json
```## Run
1. Backend
```
npm run backend
```2. Frontend
### Compiles and hot-reloads for development
```
npm run serve
```### Compiles and minifies for production
```
npm run build
```
3. Backend (Heroku)
```
npm start
```## Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).