- Node.js
- Express
- Mongoose
- Nunjucks (Template Engine)
- Nodemon (Reload automatically for dev mode)
- PM2 (Deployment)
- Gulp (Automate and enhance your workflow)
- BrowserSync (Time-saving synchronised browser testing)
- WebPack (Bundle your scripts)
- Unix
- Node.js v10+
$ yarn install
Command | Description |
---|---|
npm run dev |
Run development server and watch changes |
npm run start |
Start development server |
npm run production |
Start production server |
npm run pm2 --env=production |
Start production server with PM2 |
npm run deploy:heroku |
Update Heroku app |
npm run deploy:server |
Deploy app into server |
npm run gulp |
Start browsersync & sass |
npm run webpack |
Start webpack |
app/
client/
cms/
core/
public/
- HTTP Public folderProcfile
- Heroku entry pointREADME.md
app.js
- Server entry pointnodemon.json
- Nodemon entry point
You can create any config enviroments as needed. By default, vulcano runs with NODE_ENV=development, in development mode. In productions servers, you should change NODE_ENV to production.