A yeoman generator for EvaEngine.js
- EvaEngine.js based
- EvaQueue.js support (optional)
First, install Yeoman and generator-evaengine using npm (we assume you have pre-installed node.js).
npm install -g yo
npm install -g generator-evaengine
Then generate your new project:
yo evaengine
├── Dockerfile
├── LICENSE
├── Makefile
├── README.md
├── build
├── config
│ ├── config.default.js
│ ├── config.development.js
│ ├── config.production.js
│ └── config.test.js
├── engine
├── logs
├── nodemon.json
├── package.json
├── public
├── src
│ ├── app.js
│ ├── cli.js
│ ├── commands
│ │ └── hello_world.js
│ ├── crontab.js
│ ├── entities
│ │ └── index.js
│ ├── models
│ │ └── index.js
│ ├── routes
│ │ ├── api
│ │ │ └── hello_world.js
│ │ └── index.js
│ └── swagger.js
├── test
│ ├── bootstrap.js
│ └── routes
│ └── api
│ └── hello_world.js
└── views
├── error.pug
└── index.pug
MIT © EvaEngine