Document admin whitelist and quota commands

This commit is contained in:
2025-10-30 13:36:01 -06:00
parent a2810a720f
commit 98b26537a1
2 changed files with 17 additions and 47 deletions

View File

@@ -34,12 +34,17 @@ For example, if you installed the app at `ente.cloudron.io`, create records for
## Administration
- Use the bundled CLI from the Cloudron web terminal:
- Use the bundled CLI from the Cloudron web terminal (CLI state lives in `/app/data/cli-data`):
```bash
cloudron exec --app ente.cloudron.io -- sudo -u cloudron ente --help
# Whitelist an administrator
cloudron exec --app ente.cloudron.io -- sudo -u cloudron ente admin user whitelist --email admin@example.com
# Increase a users storage allocation (in GB)
cloudron exec --app ente.cloudron.io -- sudo -u cloudron ente admin user quota set --email user@example.com --storage-gb 500
```
CLI state lives at `/app/data/cli-data` (available inside the container at `/cli-data`).
- Follow Entes upstream guides to [whitelist administrative accounts](https://ente.io/help/self-hosting/administration/users#whitelist-admins) and to [adjust user storage quotas](https://ente.io/help/self-hosting/administration/cli).
See the upstream admin guides for further context: [user administration](https://ente.io/help/self-hosting/administration/users) and [CLI reference](https://ente.io/help/self-hosting/administration/cli).
Logs are streamed to the Cloudron dashboard. For deeper inspection use:
```bash