-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
33 lines (32 loc) · 1.03 KB
/
config.py
File metadata and controls
33 lines (32 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Organization configurations
ORGANIZATIONS = {
"GDGVIT_2024": {
"name": "GDGVIT",
"full_name": "Google Developer Groups - VIT",
"description": "Community of developers passionate about Google technologies",
"color_primary": "#667eea",
"color_secondary": "#764ba2",
"year": 2024,
"show_banner": True,
},
"GDGVIT_2025": {
"name": "GDGVIT",
"full_name": "Google Developer Groups - VIT",
"description": "Community of developers passionate about Google technologies",
"color_primary": "#2563eb",
"color_secondary": "#1e40af",
"year": 2025,
"show_banner": True,
},
"CUSTOM_ORG": {
"name": "Your Organization",
"full_name": "Your Organization Full Name",
"description": "Organization description",
"color_primary": "#667eea",
"color_secondary": "#764ba2",
"year": 2024,
"show_banner": False,
},
}
DEFAULT_ORG = "GDGVIT_2024"
DEFAULT_CSV_PATH = "gdgvit_2024.csv"