Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Instruct devs about symlink #53

Merged
merged 2 commits into from
Jun 26, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@ composer require backpack/basset
php artisan basset:install
```

> **Note**
> By default Basset relies on the public disk, you may change it if you want to, but if you stick to the defaults, make sure your disk is properly setup on `config/filsystems.php`, make sure it [looks like the default one](https://github.com/laravel/laravel/blob/10.x/config/filesystems.php#L39-L45).
#### Storage Symlink
The installation command will create the storage symlink in your system and it will also add the command to `composer.json` file, which will most probably make it work on your development/staging/production servers. If that's not the case, make sure you create the links manually wherever you need them, with the command `php artisan storage:link`.

#### Disk
By default Basset relies on the public disk, you may change it if you want to, but if you stick to the defaults, make sure your disk is properly setup on `config/filsystems.php`, make sure it [looks like the default one](https://github.com/laravel/laravel/blob/10.x/config/filesystems.php#L39-L45).
tabacitu marked this conversation as resolved.
Show resolved Hide resolved


## Usage
Expand Down