mirror of
https://github.com/kevin-DL/InertiaJS-Vue3-Tailwind-CSS-AdonisJS.git
synced 2026-01-11 19:04:27 +00:00
29 lines
411 B
Markdown
29 lines
411 B
Markdown
# InertiaJS + Vue3 + Tailwind CSS 2.0 + AdonisJS 5 Bolierplate
|
|
|
|
## Installation
|
|
|
|
Install NPM dependencies :
|
|
```bash
|
|
npm ci
|
|
```
|
|
|
|
### Compile Assets
|
|
|
|
Build assets :
|
|
```bash
|
|
node ace mix:build
|
|
```
|
|
Build assets and watch for file changes :
|
|
```bash
|
|
node ace mix:watch
|
|
```
|
|
Build assets for production :
|
|
```bash
|
|
node ace mix:build --production
|
|
```
|
|
### Run server
|
|
|
|
Run adonis server :
|
|
```bash
|
|
node ace serve --watch
|
|
``` |