Some checks failed
CI / verify (push) Has been cancelled
Weekday 10am Eastern cron exports all Webex Calling locations whose name starts with "Store" to a legacy-format CSV (+E164,Store XXXX), diffs against the previous baseline, and posts the file plus a change summary to a configured Webex space. - src/webex/storePhones.js: paginated GET /telephony/config/locations - src/services/storePhoneExport.js: CSV format, filename, diff, message - src/webex/messages.js: bot-token multipart POST /messages with file - src/jobs/storePhoneExport.js + cron in src/index.js - scripts/exportStorePhones.js for manual runs (npm run export-store-phones) - Persist baseline + archives under data/store-phone-export/ (gitignored) - Dockerfile: create /app/data for volume mount in prod - CI: align node-version with Dockerfile (20) Co-authored-by: Cursor <cursoragent@cursor.com>
42 lines
657 B
Text
42 lines
657 B
Text
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Secrets and local config
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
config.json
|
|
config/wbxTokens.json
|
|
config/google-service-account.json
|
|
config/*-service-account.json
|
|
googleData.json
|
|
*.pem
|
|
*.key
|
|
|
|
# Runtime artifacts
|
|
*.log
|
|
buildlogs.log
|
|
|
|
# Generated CSV outputs (from scripts/generate911Csv.js)
|
|
buildingFile.csv
|
|
locationFile.csv
|
|
|
|
# Daily store phone export baseline + archives
|
|
data/
|
|
|
|
# Archives
|
|
*.zip
|
|
|
|
# Remote agent packaging output (produced by docker/remote-agent/package.sh)
|
|
docker/remote-agent/dist/
|
|
docker/remote-agent/.env
|
|
|
|
# OS / editor cruft
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|