This project contains all the material used for Vue Course. It's an application providing documentation (slides), code examples and exercises.
Run the application on your local machine or on a server of your choice.
- Node 14.x
- Yarn 1.x
# clone the project
git clone https://github.com/ilmente/vue-class.git
# go in the root folder
cd ./vue-class
# install the dependencies
yarn install
# run the local server
yarn start
Application (by default) runs on localhost:3003.
# go in the root folder
cd ~/path/to/vue-class
# build the applications once
yarn build
# or watch for changes in the code
yarn build --watch
# run the dev server with code watchers
# and proxies the netlify lambda functions local server
yarn serve
# run netlify lambda functions local server
yarn serve:lambda
# generate a static website
yarn generate