https://github.com/jerp86/bonus_adonisjs
Curso Bônus de AdonisJS :rocket:
https://github.com/jerp86/bonus_adonisjs
Last synced: 2 months ago
JSON representation
Curso Bônus de AdonisJS :rocket:
- Host: GitHub
- URL: https://github.com/jerp86/bonus_adonisjs
- Owner: jerp86
- Created: 2020-01-04T08:34:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-12T15:23:35.000Z (about 5 years ago)
- Last Synced: 2025-12-26T11:44:35.232Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.36 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
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` / `yarn`.
### Migrations
Run the following command to run startup migrations.
```js
adonis migration:run
```