This is the fullstack boilerplate for AdonisJs, it comes pre-configured with.
- Bodyparser
- Session
- Authentication
- Web security middleware
- CORS
- Edge template engine
- Lucid ORM
- Migrations and seeds
- Run npm install to install all dependencies
npm install to install
-
Make a copy of .env.example rename it to .env
-
Generate the secret key
adonis key:generate
-
Add all of your configuration to your database on the .env file
-
Run migrations
adonis migration:run
- Start your server up
adonis serve --dev