Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/changjoo-park/adonis-fullstack-stimulus-app
The fullstack application boilerplate for Adonisjs with Stimulus
https://github.com/changjoo-park/adonis-fullstack-stimulus-app
adonis-blueprint adonisjs stimulus
Last synced: 3 days ago
JSON representation
The fullstack application boilerplate for Adonisjs with Stimulus
- Host: GitHub
- URL: https://github.com/changjoo-park/adonis-fullstack-stimulus-app
- Owner: ChangJoo-Park
- Created: 2019-02-17T13:49:08.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-17T14:35:16.000Z (almost 6 years ago)
- Last Synced: 2024-11-24T19:47:19.150Z (about 2 months ago)
- Topics: adonis-blueprint, adonisjs, stimulus
- Language: JavaScript
- Size: 179 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adonis + Stimulus fullstack application
This is the fullstack boilerplate for AdonisJs, it comes pre-configured with.
1. Bodyparser
2. Session
3. Authentication
4. Web security middleware
5. CORS
6. Edge template engine
7. Lucid ORM
8. Migrations and seeds
9. Stimulus
10. Turbolinks
11. Test## Setup
Use the adonis command to install the blueprint
```bash
adonis new yardstick --blueprint=changjoo-park/adonis-fullstack-stimulus-app```
or manually clone the repo and then run `npm install`.
### Migrations
Run the following command to run startup migrations.
```js
adonis migration:run
```### Development
```bash
npm run dev
```### Test
```bash
adonis test
```