this repo has no description
atproto
at main 18 lines 690 B view raw
1# Smartcar API Configuration 2# Get these from https://console.smartcar.com/ 3SMARTCAR_CLIENT_ID=your_client_id_here 4SMARTCAR_CLIENT_SECRET=your_client_secret_here 5 6# Your vehicle ID (get this after connecting a vehicle) 7# You can get this by running: bun run index.ts and following the OAuth flow 8VEHICLE_ID=your_vehicle_id_here 9 10# Optional: Custom redirect URI (defaults to http://localhost:3000/callback) 11SMARTCAR_REDIRECT_URI=http://localhost:3000/callback 12 13# Note: The app is set to 'test' mode by default 14# Change mode: 'live' in index.ts for production use 15 16# SQLite Database 17# Tokens are automatically stored in ./smartcar_tokens.db 18# To clear tokens: bun run index.ts --clear-tokens