Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 690 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 690 Bytes

Magenta

AdonisJS application

This is the fullstack boilerplate for AdonisJs, it comes pre-configured with. This framework comes with pre-installed:

  1. Bodyparser
  2. Session
  3. Authentication
  4. Web security middleware
  5. CORS
  6. Edge template engine
  7. Lucid ORM
  8. Migrations and seeds

Setup

You need to install:

Run `yarn install` to add all the repositories.

Only use yarn add to download repositories

Database

The database used is MySql, run

yarn add mysql

Migrations

Run the following command to run startup migrations.

adonis migration:run

Server

To run the server and test, run adonis serve --dev