Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/batosai/adonis-starter


https://github.com/batosai/adonis-starter

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

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
```