After cloning this repo, run:
cp .env.example .env
npm i
node ace configure @adonisjs/lucid
On the .env file, append this settings (for SQLite):
DB_CONNECTION=sqlite
STM_DB_FILENAME=storage/db.sqlite3
After this, you should be able to start the database and the server:
node ace migration:run
node ace db:seed
node ace serve
The default user and password are visible in the user seed file.