Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/acidiney/learn-adonisjs

A single repository learn about routing, upload files, controllers, auth with adonis
https://github.com/acidiney/learn-adonisjs

Last synced: about 2 months ago
JSON representation

A single repository learn about routing, upload files, controllers, auth with adonis

Awesome Lists containing this project

README

        

# Adonis Learn API
A single project to learn about adonis

## Setup
1. Install dependencies using
```bash
npm install
```
2. Migrate all migrations
```bash
adonis migration:run
```

3. Make server alive
```bash
adonis serve --dev
```
### Test endpoints

I have used the rest-client extension for VSCode to test my endpoint without leave VsCode, You can find all documentation about endpoint in `rest-client` folder, and if you have the extension installed you can simple click on `send request` and see what happens ^^

thanks