Improve documentation

This commit is contained in:
brufdev
2025-02-14 00:44:45 +00:00
parent 49c11da9b3
commit 8356181503
2 changed files with 8 additions and 8 deletions

View File

@@ -96,11 +96,11 @@ docker compose up -d
**Read the [upgrading guide](UPGRADING.md) if you are upgrading from a previous version.**
Read the [non-Docker guide](docs/installation/non-docker.md) for the full instructions.
The Docker method is recommended because it is faster and simpler to set up. However, if you prefer a non-Docker installation, please refer to this [guide](docs/installation/non-docker.md) for step-by-step instructions.
## Customization
You can customize Many Notes by adding environment variables to the `compose.yaml` file.
To customize Many Notes, add environment variables to the `compose.yaml` file if using the Docker installation. If you chose the non-Docker installation, you should add the environment variables to a `.env` file instead.
### Custom URL (default: http://localhost)

View File

@@ -26,6 +26,12 @@ Install npm dependencies
npm install
```
Create caches to optimize the application
```shell
php artisan optimize
```
Run the npm build
```shell
@@ -44,12 +50,6 @@ Generate application key
php artisan key:generate
```
Create caches to optimize the application
```shell
php artisan optimize
```
Create the symbolic link for Many Notes public storage
```shell