- 🛣 Memory Motel API Documentation: memory-api.azurewebsites.net/docs
- 📘 Nuxt Documentation: nuxtjs.org
- 📘 Vue Documentation: vuejs.org
- 🌟 Nuxt Resources awesome.nuxtjs.org
- 🚦 Git workflow Git flow cheatsheet
Plugins | Description | Version |
---|---|---|
@nuxtjs/auth-next | 🔑 Auth module | |
@nuxtjs/router-extras | 🛣 Router extended | |
@nuxtjs/pwa | 📱 PWA module with workbox support | |
@nuxtjs/axios | 🌐 Axios module for Nuxt | |
hammerjs | 👉 Handle multi-touch gestures | |
vue-lazyload | 🏞 Lazyload on medias | |
dayjs | ⏰ Immutable date-time | |
gsap | 💃 Animation library |
github.com/Hashs7/memory-api
Enable getUserMedia on your navigator
For Chrome go to: chrome://flags/#enable-experimental-web-platform-features
# copy env variables and fill with dev values
cp .env.example .env
# install dependencies
yarn install
# serve with hot reload at localhost:3000
yarn dev
This project uses mkcert to generate SSL certificate. Please refer to the mkcert installation doc to install it on your machine.
- Generate a local certificate in
/cert
folder, in root of project.
# Create and go in /cert
mkdir cert && cd cert
# Generate certificate
# Replace [localip] by your machine's ip in your local network (or static url on Mac)
mkcert -key-file key.pem -cert-file cert.pem localhost 127.0.0.1 [localip] ::1
# On MacOS, you can also use your local DNS (Settings -> Share). I.E. :
mkcert -key-file key.pem -cert-file cert.pem localhost 127.0.0.1 robin.local ::1
- Install the certificate on your machine.
mkcert -install
- Mobile connection :
- Transfer the
cert/cert.pem
file on your mobile (i.e. via AirDrop) - For the certificates to be trusted on mobile devices, you will have
to install the root CA. It's the
rootCA.pem
file in the folder printed bymkcert -CAROOT
. Also transfer it on your mobile. - Install both profiles on the device
- Enjoy ! 🎉
# see lint errors and warnings
yarn lint
# fix errors and warnings automatically
yarn lint --fix
# build for production and launch server
yarn build
yarn start
# generate static project
yarn generate
# init git flow
git flow init
# init git flow
git checkout develop
git flow feature start my-feature-name
git flow feature publish my-feature-name
git flow feature finish my-feature-name