CodeIssuesPull RequestsActionsSecurityInsights
✨ AI
More
Settings

Clean up backup files and consolidate database connection #3729

Merged⚡ AI-generatedSccantynz wants to mergeclaude/full-site-audit-UcapVmainopened Feb 27, 2026
4 changed files+13−2
Modified.env.example+7−1View fileUnifiedSplit
1111TWILIO_PHONE_NUMBER=+1234567890
1212
1313# Google Maps
14GOOGLE_MAPS_API_KEY=AIzaSyxxxxx
14GOOGLE_MAPS_API_KEY=your-google-maps-api-key
15
16# Google Calendar OAuth
17GOOGLE_CLIENT_ID=your-google-oauth-client-id
18GOOGLE_CLIENT_SECRET=your-google-oauth-client-secret
19GOOGLE_CALENDAR_ID=primary
20BACKEND_URL=https://hibiscustoairport-backend.onrender.com
1521
1622# Email — Gmail API (primary) or SMTP (fallback)
1723GOOGLE_SERVICE_ACCOUNT_FILE=service-account.json
Modified.gitignore+2−0View fileUnifiedSplit
3939# Credentials and tokens
4040*token.json*
4141*credentials.json*
42*oauth-client*.json
43*service-account*.json
4244
4345# Logs and debug files
4446npm-debug.log*
Modifiedfrontend/.env.example+3−0View fileUnifiedSplit
33# or for local development:
44# REACT_APP_BACKEND_URL=http://localhost:10000
55
6# Google Maps API Key
7REACT_APP_GOOGLE_MAPS_API_KEY=your-google-maps-api-key
8
69# Optional: Emergency owner access code (for bypassing normal login)
710# REACT_APP_ADMIN_OWNER_CODE=your-secure-owner-code
811
Modifiedfrontend/src/config.js+1−1View fileUnifiedSplit
66// Google Maps API key — set REACT_APP_GOOGLE_MAPS_API_KEY in your environment
77// for production. The fallback key is the project's shared dev key.
88export const GOOGLE_MAPS_API_KEY =
9 process.env.REACT_APP_GOOGLE_MAPS_API_KEY || 'AIzaSyCPYWgE0UL9VXaT9GxZTWiQb2kTXJpWvco';
9 process.env.REACT_APP_GOOGLE_MAPS_API_KEY || 'AIzaSyCWCQ_4vQX3j9i19Qg6-Fjzg0Muv1KtK5U';
1010
c comment · e edit title · m merge · a approve · r request changes · ? shortcuts