timeback 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -5
- package/dist/cli.js +52014 -51746
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -106,11 +106,14 @@ timeback inspect course <course-id> --json
|
|
|
106
106
|
API clients read credentials from environment variables:
|
|
107
107
|
|
|
108
108
|
```bash
|
|
109
|
-
#
|
|
110
|
-
export
|
|
111
|
-
export
|
|
112
|
-
export
|
|
113
|
-
export
|
|
109
|
+
# Timeback API credentials (recommended)
|
|
110
|
+
export TIMEBACK_API_BASE_URL="https://api.example.com"
|
|
111
|
+
export TIMEBACK_API_AUTH_URL="https://auth.example.com/oauth2/token"
|
|
112
|
+
export TIMEBACK_API_CLIENT_ID="your-client-id"
|
|
113
|
+
export TIMEBACK_API_CLIENT_SECRET="your-client-secret"
|
|
114
|
+
|
|
115
|
+
# Legacy service-specific vars also supported as fallbacks:
|
|
116
|
+
# TIMEBACK_*, ONEROSTER_*, EDUBRIDGE_*, CALIPER_*, QTI_*
|
|
114
117
|
```
|
|
115
118
|
|
|
116
119
|
### `timeback.config.json`
|