Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months ago
JSON representation
A single repository learn about routing, upload files, controllers, auth with adonis
- Host: GitHub
- URL: https://github.com/acidiney/learn-adonisjs
- Owner: acidiney
- Created: 2020-07-16T10:14:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T17:35:16.000Z (almost 2 years ago)
- Last Synced: 2024-05-19T01:34:16.649Z (6 months ago)
- Language: JavaScript
- Size: 656 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-made-by-angolans - Learn-Adonis
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 endpointsI 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