Adonis Node.js Forum
This is the fullstack boilerplate for AdonisJs, it comes pre-configured with.
Install the adonis cli
npm i -g adonis-cli
Install necessary dependencies
npm i
Create a mysql database and update the .env file values for the database connection
cp .env.example .env
Run the following command to run startup migrations.
adonis migration:run
Run the following command to run dev server.
adonis serve --dev