https://github.com/bahdcoder/adonis-fullstack-auth
The fullstack application (with session based authentication) boilerplate for Adonisjs
https://github.com/bahdcoder/adonis-fullstack-auth
Last synced: 4 months ago
JSON representation
The fullstack application (with session based authentication) boilerplate for Adonisjs
- Host: GitHub
- URL: https://github.com/bahdcoder/adonis-fullstack-auth
- Owner: bahdcoder
- Created: 2018-03-29T14:18:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-31T08:58:58.000Z (over 7 years ago)
- Last Synced: 2025-05-25T14:46:02.257Z (7 months ago)
- Language: JavaScript
- Size: 138 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adonis fullstack application
This is a fullstack boilerplate for AdonisJs, with a complete authentication system built in. 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. Validation
11. Session based authentication system
## How It looks:




## Setup
Use the adonis command to install the blueprint
```bash
adonis new yardstick --blueprint bahdcoder/adonis-fullstack-auth
```
or manually clone the repo and then run `npm install`.
### Migrations
Run the following command to run startup migrations.
```js
adonis migration:run
```
### Todo List
- [x] User registration
- [x] User login
- [x] Redirect if authenticated middleware
- [ ] Remember me
- [ ] Password resets
- [ ] Upgrade to use [adonis-persona](https://github.com/adonisjs/adonis-persona)