Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andresayac/shadcn-laravel-template
Template laravel + breeze + shadcn + Inertia
https://github.com/andresayac/shadcn-laravel-template
Last synced: 6 days ago
JSON representation
Template laravel + breeze + shadcn + Inertia
- Host: GitHub
- URL: https://github.com/andresayac/shadcn-laravel-template
- Owner: andresayac
- Created: 2024-03-05T04:22:17.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-05T15:00:54.000Z (8 months ago)
- Last Synced: 2024-03-06T05:32:57.383Z (8 months ago)
- Language: TypeScript
- Homepage: https://shadcn-template.afaya.com.co/dashboard
- Size: 199 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Breeze with Shadcn/UI
## Installation
```bash
composer install
```
## Migrate
```bash
php artisan migrate
```
## Install NPM Packages
```bash
npm install
```
## Config Link Valet o Herd
```bash
valet link
#or
herd link
```## Development Mode
```bash
npm run dev
```## Production Mode
```bash
npm run prod
```## If you are using VSCode add this configuration
1. Create Folder `.vscode` in root project
2. Create File `settings.json` in `.vscode` folder
```json
{
"tailwindCSS.includeLanguages": {
"plaintext": "html"
},
"tailwindCSS.experimental.classRegex": [
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
["cn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
["tw=\"([^\"]*)\""]
],
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
}
```