Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/outluch/adonis-raw-issue
Issue with raw in transaction reproduce
https://github.com/outluch/adonis-raw-issue
Last synced: about 1 month ago
JSON representation
Issue with raw in transaction reproduce
- Host: GitHub
- URL: https://github.com/outluch/adonis-raw-issue
- Owner: outluch
- Created: 2018-08-31T15:02:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-31T15:02:14.000Z (over 6 years ago)
- Last Synced: 2024-11-06T12:30:08.217Z (3 months ago)
- Language: JavaScript
- Size: 49.8 KB
- Stars: 0
- Watchers: 2
- 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`.
### Migrations
Run the following command to run startup migrations.
```js
adonis migration:run
```