This is the fullstack boilerplate for AdonisJs, it comes pre-configured with. This framework comes with pre-installed:
- Bodyparser
- Session
- Authentication
- Web security middleware
- CORS
- Edge template engine
- Lucid ORM
- Migrations and seeds
You need to install:
Run `yarn install` to add all the repositories.
Only use yarn add
to download repositories
The database used is MySql, run
yarn add mysql
Run the following command to run startup migrations.
adonis migration:run
To run the server and test, run adonis serve --dev