Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bradtraversy/adonis40blog
Simple blog in AdonisJS 4.0
https://github.com/bradtraversy/adonis40blog
Last synced: 3 months ago
JSON representation
Simple blog in AdonisJS 4.0
- Host: GitHub
- URL: https://github.com/bradtraversy/adonis40blog
- Owner: bradtraversy
- Created: 2017-11-19T23:46:36.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-19T23:51:10.000Z (about 7 years ago)
- Last Synced: 2024-05-01T21:03:37.721Z (9 months ago)
- Language: JavaScript
- Size: 132 KB
- Stars: 25
- Watchers: 4
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adonis 4.0 Blog
This is a simple CRUD app using AdonisJS 4.0
## Usage
Install dependencies
```bash
npm install
```### Database setup
Edit your .env file to include the correct DB credentials### Migrations
Run the following command to run startup migrations.
```js
adonis migration:run
```### Run Server (nodemon suggested)
```bash
adonis serve
```or
```bash
nodemon server.js
```