Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/batosai/adonis-starter
https://github.com/batosai/adonis-starter
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/batosai/adonis-starter
- Owner: batosai
- Created: 2021-11-23T22:35:46.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-14T11:14:02.000Z (5 months ago)
- Last Synced: 2024-06-26T13:34:27.404Z (4 months ago)
- Language: TypeScript
- Size: 2.69 MB
- Stars: 13
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome-adonisjs - MVP Admin Starter - build your next Adonis Starter project from a pre-existing admin interface (Register user, Roles, Sign in, Forgot password, Email verification, Impersonating users) (Miscellaneous)
README
# Starter kit for AdonisJS 5
/!\ For AdonisJS v6 : [here](https://github.com/batosai/adonis-starter-kit)
A Node.js, TypeScript & sqlite starter built upon [Adonis JS](https://adonisjs.com) framework.
🔋 Batteries included:
- [x] Sign in form
- [x] Logout
- [x] List / create / delete users in admin page
- [x] Avatar upload by attachment-advanced
- [x] Forgot password
- [x] Email create password
- [x] Roles and permissions with AdonisJS bouncers
- [x] i18n
- [x] Last login at
- [x] Form component
- [x] Admin UI [windmill](https://github.com/estevanmaito/windmill-dashboard)
- [x] Tailwind 3.0
- [x] Alpinejs
- [x] Webpack encore
- [x] Hotwired turbo
- [x] Impersonating users# Installation
```bash
npm install (or yarn)
node ace generate:key
node ace migration:run
node ace db:seed
```sqlite is a default solution.
@vscode/sqlite3 package require python2, if you rencontred error :```
npm install --build-from-source --python=/usr/bin/python2
```or
```
yarn --build-from-source --python=/usr/bin/python2
```## Developing
```bash
npm run dev
visite http://localhost:3333/admin
```