This repo contains an example application of the Adonis Framework. You must checkout the source code or the API docs on official website to learn more.
- Authentication System
- Blogging System
- API Testing
- Browser Testing
- Assets management
- Passwordless authentication
- Frontend framework to increase the UX
- ACL
- WYSIWYG editor
- File uploaded with processing (image)
- Run
npm install
to install all dependencies - Make a copy of
.env.example
rename it to.env
- Run
adonis key:generate
to generate the secret key - Run
adonis migration:run
to setup the database - Run
npm run build:dev
to build static assets (preferably in another terminal tab/window) - Run
adonis serve --dev
to run the application