Nuxt.js-based codebase powering theindex.la
npm i
npm run dev
This will install all dependencies and run Nuxt in development mode, meaning all requests will be server-rendered and any code changes will live-reload.
All commits to the master branch are automatically built and deployed to Heroku. During this process, Heroku will run the npm run build
command to create a compiled version of both the server code and all the client assets, and will then run npm start
to start the server.
You can learn more about running Nuxt as a universal SSR application here.