Curso AdonisJS da RocketSeat - Skylab
Construir uma API-Only com AdonisJS, construindo os principais métodos de uma aplicação básica, como criação de usuários, controle de autenticação por token Bearer, recuperação de passoword, relacionamentos entre os models, validação de dados e construção dos CRUDs destes models e outras features deste projeto de estudos.
Abaixo segue o link da plataforma de cursos Skylab, onde este projeto faz parte do Curso Bônus de AdonisJS https://skylab.rocketseat.com.br/
Adonis API application
This is the boilerplate for creating an API server in AdonisJs, it comes pre-configured with.
- Bodyparser
- Authentication
- CORS
- Lucid ORM
- Migrations and seeds
Setup
Use the adonis command to install the blueprint
adonis new yardstick --api-only
or manually clone the repo and then run npm install
.
Migrations
Run the following command to run startup migrations.
adonis migration:run
Run Server to Environment Developer
Run the following command to run serve Adonis in URL: "http://127.0.0.1:3333"
adonis serve --dev