You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -36,6 +38,7 @@ The goal of the project is to create a template for development on Laravel and N
36
38
-[**Laravel Telescope**](https://laravel.com/docs/11.x/telescope) provides insight into the requests coming into your application, exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, variable dumps, and more.
37
39
-[**Laravel Sanctum**](https://laravel.com/docs/11.x/sanctum) Token-based authorization is compatible with **SSR** and **CSR**
-[**Laravel Sail**](https://laravel.com/docs/11.x/sail) Light-weight command-line interface for interacting with Laravel's default Docker development environment.
39
42
-[**Spatie Laravel Permissions**](https://spatie.be/docs/laravel-permission/v6/introduction) This package allows you to manage user permissions and roles in a database.
40
43
- UI library [**Nuxt UI**](https://ui.nuxt.com/) based on [**TailwindCSS**](https://tailwindui.com/) and [**HeadlessUI**](https://headlessui.com/).
41
44
-[**Pinia**](https://pinia.vuejs.org/ssr/nuxt.html) The intuitive store for Vue.js
@@ -52,19 +55,53 @@ use $**fetch** without having to resort to custom $**fetch** wrappers.
[Laravel Sail](https://laravel.com/docs/11.x/sail) is a light-weight command-line interface for interacting with Laravel's default Docker development environment. Sail provides a great starting point for building a Laravel application using PHP, MySQL, and Redis without requiring prior Docker experience.
68
+
69
+
At its heart, Sail is the `docker-compose.yml` file and the `sail` script that is stored at the root of your project. The sail script provides a CLI with convenient methods for interacting with the Docker containers defined by the docker-compose.yml file.
70
+
71
+
Laravel Sail is supported on macOS, Linux, and Windows (via [WSL2](https://docs.microsoft.com/en-us/windows/wsl/about)).
To make sure this is always available, you may add this to your shell configuration file in your home directory, such as ~/.zshrc or ~/.bashrc, and then restart your shell.
86
+
3.`sail up`
87
+
4.`sail yarn install`
88
+
5.`sail yarn dev`
89
+
90
+
> Read the full [Laravel Sail](https://laravel.com/docs/11.x/sail) documentation to get the best user experience
64
91
65
92
## Upgrade
66
-
1.`npx nuxi upgrade`
67
-
2.`composer update`
93
+
94
+
Standalone:
95
+
```shell
96
+
npx nuxi upgrade
97
+
composer update
98
+
```
99
+
100
+
Sail:
101
+
```shell
102
+
sail npx nuxi upgrade
103
+
sail composer update
104
+
```
68
105
69
106
> Nuxt port is set in package.json scripts via **cross-env**
0 commit comments