https://github.com/nderousseaux/template-vuejs
Template vuejs
https://github.com/nderousseaux/template-vuejs
cookiecutter template vuejs
Last synced: 2 months ago
JSON representation
Template vuejs
- Host: GitHub
- URL: https://github.com/nderousseaux/template-vuejs
- Owner: nderousseaux
- Created: 2023-11-12T12:04:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-19T14:37:15.000Z (12 months ago)
- Last Synced: 2025-02-12T18:33:25.109Z (4 months ago)
- Topics: cookiecutter, template, vuejs
- Language: SCSS
- Homepage:
- Size: 107 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exemple of a Vue.js app
Template of a Vue.js app.
## Development
Before start, copy `.env.example` to `.env` and set the environment variables.
### Run the app in development mode:
```bash
npm install # install dependencies
npm run serve # run development server
```
With visual studio code, you can use run and debug configuration. (while `npm run serve` is running)### Lints and fixes files:
```bash
npm run lint
```