Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leandro-parice/desafio4
https://github.com/leandro-parice/desafio4
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/leandro-parice/desafio4
- Owner: leandro-parice
- Created: 2019-06-10T23:34:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T11:23:08.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T17:51:04.370Z (over 1 year ago)
- Language: JavaScript
- Size: 708 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adonis API application
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
Use the adonis command to install the blueprint
```bash
adonis new yardstick --api-only
```or manually clone the repo and then run `npm install`.
### Migrations
Run the following command to run startup migrations.
```js
adonis migration:run
```