Updated README

This commit is contained in:
2026-07-05 15:43:53 +01:00
parent ba5c2c5821
commit c47e44a69d
2 changed files with 8 additions and 12 deletions
+6 -2
View File
@@ -36,20 +36,24 @@ Here is an example `config.json` matching the repository's `config.example.json`
{ "key": "YOUR_API_KEY_2", "rateLimitPerMinute": 50 }
],
"serviceAccounts": [
{ "path": "credentials.json", "rateLimitPerMinute": 50 }
{ "path": "credentials.json", "rateLimitPerMinute": 50 },
{ "path": "credentials_2.json", "rateLimitPerMinute": 50 }
],
"documents": [
{
"documentId": "YOUR_SPREADSHEET_ID",
"outputDir": "output/your-document",
"sheets": [
{ "name": "Sheet1", "outputFilename": "sheet1.csv" }
{ "name": "Sheet1", "outputFilename": "sheet1.csv" },
{ "name": "Sheet2", "outputFilename": "sheet2.csv" }
]
}
]
}
```
Your `config.json` should ONLY contain `apiKeys` OR `serviceAccounts`.
## Rate limiting
The app enforces a maximum of `rateLimitPerMinute` requests per minute to avoid exceeding API limits.