Refactor DashboardCollectionList: Simplify search input layout and improve tag selection logic for better user experience.
This commit is contained in:
15
.env.example
15
.env.example
@@ -7,10 +7,21 @@ RUSTYCMS_LOCALES=de,en
|
||||
# Only when RUSTYCMS_STORE=sqlite: SQLite URL (default: sqlite:content.db)
|
||||
# RUSTYCMS_DATABASE_URL=sqlite:content.db
|
||||
|
||||
# API key for write access (POST/PUT/DELETE + POST /api/schemas). GET stays without key.
|
||||
# Authorization: Bearer <key> or X-API-Key: <key>. For Admin UI in browser: set same value in admin-ui as NEXT_PUBLIC_RUSTYCMS_API_KEY.
|
||||
# API key for write access. Single key = full access. Or use RUSTYCMS_API_KEYS for roles.
|
||||
# Authorization: Bearer <key> or X-API-Key: <key>. For Admin UI: set same in admin-ui as NEXT_PUBLIC_RUSTYCMS_API_KEY.
|
||||
RUSTYCMS_API_KEY=dein-geheimes-token
|
||||
|
||||
# Optional: multiple keys with roles. Overrides RUSTYCMS_API_KEY when set.
|
||||
# Format: key1:role1,key2:role2. Roles: read (GET only), read_write (content + assets), admin (+ schemas).
|
||||
# RUSTYCMS_API_KEYS=key1:read,key2:read_write,key3:admin
|
||||
|
||||
# Optional: environments (e.g. production,staging). File store only. Content under content/ and content/<env>/.
|
||||
# API: ?_environment=staging. Default = first in list.
|
||||
# RUSTYCMS_ENVIRONMENTS=production,staging
|
||||
|
||||
# Optional: webhook URLs (comma-separated). POST with JSON { event, collection?, slug?, ... } on content/asset/schema changes.
|
||||
# RUSTYCMS_WEBHOOKS=https://example.com/hook
|
||||
|
||||
# Optional: CORS – allowed origin (e.g. https://my-frontend.com). Empty or * = allow all.
|
||||
# RUSTYCMS_CORS_ORIGIN=
|
||||
|
||||
|
||||
Reference in New Issue
Block a user