1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

add some examples to the readme

This commit is contained in:
Robin Appelman 2023-05-07 13:52:30 +02:00
commit 7879f83a09

View file

@ -28,6 +28,23 @@ sources_root = "/path/to/nextcloud/sources"
See the [configuration section](#configuration) for more options. See the [configuration section](#configuration) for more options.
### Quick examples
- Start a Nextcloud instance with `postgresql`, `php 8.1` and `s3` primary storage:
```bash
haze start pgsq s3
```
- Start a Nextcloud instance with `sqlite`, `php 8.2` and an `smb` external storage:
```bash
haze start 8.2 smb
```
- Run specific units test against an `oracle` database
```bash
haze test oracle apps/dav/tests/unit/Connector/Sabre
```
## Managing instances ## Managing instances
#### Start an instance #### Start an instance