Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 792 Bytes

README.md

File metadata and controls

45 lines (28 loc) · 792 Bytes

Adonis API application

This project was developed with the objective of creating an authentication API

This is the boilerplate for creating an API server in AdonisJs, it comes pre-configured with.

  1. Bodyparser
  2. Authentication
  3. CORS
  4. Lucid ORM
  5. Migrations and seeds

Setup

Clone the repo and then run npm install.

npm install

Migrations

Run the following command to run startup migrations.

adonis migration:run

Run

adonis serve --dev

and acess http://localhost:3333

Docs

You can see the documentation with Postman importing docs/adonis-auth.postman_collection.json

Integration with React-Native

You can view the project that integrates the API at: Auth-React-Native