🚀 Quick Start
Want to add your team or update existing data? It's super easy!
📁 Add a New Team
- Create a new JSON file in the
teams/ folder
- Name it
team-yourteamname.json
- Use this format:
{
"teamName": "Your Team Name",
"members": [
{
"name": "Alice",
"timezone": "America/Los_Angeles",
"location": "San Francisco, CA"
},
{
"name": "Bob",
"timezone": "Europe/London",
"location": "London, UK"
},
{
"name": "Charlie",
"timezone": "Asia/Kolkata"
}
]
}
🌍 Common Timezones
US West: America/Los_Angeles
US East: America/New_York
UK: Europe/London
India: Asia/Kolkata
Japan: Asia/Tokyo
Australia: Australia/Sydney
Canada: America/Toronto
Ukraine: Europe/Kyiv
Colombia: America/Bogota
Costa Rica: America/Costa_Rica
Brazil: America/Sao_Paulo
Argentina: America/Buenos_Aires
💡 Find more timezones at Wikipedia TZ Database
🔧 How to Contribute
Option 1: GitHub (Recommended)
Fork the repository, add your team file, and create a pull request
🔗 Open GitHub Repository
Option 2: Send to Admin
Create your team JSON and send it to the repository maintainer
✨ Pro Tips
- Team names are automatically formatted (team-frontend → FRONTEND)
- Members are sorted alphabetically automatically
- The app will auto-discover your new team file
- Use standard timezone identifiers for best results
📍 Location Field (Optional)
- timezone: Required - Used for time calculations (e.g., "Asia/Kolkata")
- location: Optional - Actual city/location to display (e.g., "Pune, India")
- If location is not provided, the timezone will be displayed
- Backward compatible with old format using "location" field for timezone
📋 JSON Structure
- teamName: Display name for your team (shown in dropdown)
- members: Array of team member objects
- timezone: Required - Used for time calculations (e.g., "Asia/Kolkata")
- location: Optional - Actual city/location to display (e.g., "Pune, India")
- If location is not provided, the timezone will be displayed
- Backward compatible with old array format