forked from HackAssistant/registration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhackathon_variables.py
86 lines (74 loc) · 3.84 KB
/
hackathon_variables.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# HACKATHON PERSONALIZATION
import os
from django.utils import timezone
HACKATHON_NAME = 'HackCU'
# What's the name for the application
HACKATHON_APPLICATION_NAME = 'HackCU Registration'
# Hackathon timezone
TIME_ZONE = 'MST'
# This description will be used on the html and sharing meta tags
HACKATHON_DESCRIPTION = 'Apply now! HackCU is a student organization ' \
'at the University of Colorado at Boulder who brings together ' \
'people for our annual technology and design events, HackCU and Local Hack Day. ' \
'We are the largest hackathon in the Rocky Mountain Region, and ' \
'our mission is to foster learning, designing, ' \
'and building in order to turn student\'s ideas into a reality!'
# Domain where application is deployed, can be set by env variable
HACKATHON_DOMAIN = os.environ.get('DOMAIN', 'localhost:8000')
# Hackathon contact email: where should all hackers contact you. It will also be used as a sender for all emails
HACKATHON_CONTACT_EMAIL = '[email protected]'
# Hackathon logo url, will be used on all emails
HACKATHON_LOGO_URL = 'https://hackcu.org/assets/images/color_logo.png'
HACKATHON_OG_IMAGE = 'https://hackcu.org/assets/images/hackcu2020_og.png'
# (OPTIONAL) Track visits on your website
HACKATHON_GOOGLE_ANALYTICS = 'UA-111579742-1'
# (OPTIONAL) Hackathon twitter user
HACKATHON_TWITTER_ACCOUNT = 'hackcu'
# (OPTIONAL) Hackathon Facebook page
HACKATHON_FACEBOOK_PAGE = 'hackcu'
# (OPTIONAL) Hackathon Instagram profile
HACKATHON_INSTAGRAM_PROFILE = 'hackcu'
# (OPTIONAL) Github Repo for this project (so meta)
HACKATHON_GITHUB_REPO = 'https://github.com/hackcu/registration/'
# (OPTIONAL) Applications deadline
HACKATHON_APP_DEADLINE = timezone.datetime(2020, 2, 21, 17, 00, tzinfo=timezone.pytz.timezone(TIME_ZONE))
# (OPTIONAL) When to arrive at the hackathon
HACKATHON_ARRIVE = 'Registration opens at 8:00 AM and closes at 10:00 AM on Saturday, February 22nd, ' \
'the opening ceremony will be at 11:00 AM.'
# (OPTIONAL) When to arrive at the hackathon
HACKATHON_LEAVE = 'Closing ceremony will be held on Sunday, February 23rd from 3:00 PM to 4:00 PM. ' \
'However, the projects demo fair will be held in the afternoon from 12:30 PM to 3 PM.'
# (OPTIONAL) Hackathon live page
HACKATHON_LIVE_PAGE = 'https://live.hackcu.org'
# (OPTIONAL) Regex to automatically match organizers emails and set them as organizers when signing up
REGEX_HACKATHON_ORGANIZER_EMAIL = '^.*@hackcu\.org$'
# (OPTIONAL) Send 500 errors to email while on production mode
HACKATHON_DEV_EMAILS = ['[email protected]', ]
# Reimbursement configuration
REIMBURSEMENT_ENABLED = True
CURRENCY = '$'
REIMBURSEMENT_EXPIRY_DAYS = 5
REIMBURSEMENT_REQUIREMENTS = 'You have to submit a project and demo it during the event in order to get reimbursed'
REIMBURSEMENT_DEADLINE = timezone.datetime(2020, 1, 22, 23, 59, tzinfo=timezone.pytz.timezone(TIME_ZONE))
# (OPTIONAL) Max team members. Defaults to 4
TEAMS_ENABLED = True
HACKATHON_MAX_TEAMMATES = 4
# (OPTIONAL) Code of conduct link
CODE_CONDUCT_LINK = "https://pages.hackcu.org/code_conduct/"
# (OPTIONAL) Slack credentials
# Highly recommended to create a separate user account to extract the token from
SLACK = {
'team': os.environ.get('SL_TEAM', 'test'),
# Get it here: https://api.slack.com/custom-integrations/legacy-tokens
'token': os.environ.get('SL_TOKEN', None)
}
# (OPTIONAL) Logged in cookie
# This allows to store an extra cookie in the browser to be shared with other application on the same domain
LOGGED_IN_COOKIE_DOMAIN = '.hackcu.org'
LOGGED_IN_COOKIE_KEY = 'hackcu_logged_in'
# Hardware configuration
HARDWARE_ENABLED = False
# Hardware request time length (in minutes)
# HARDWARE_REQUEST_TIME = 10
# Can Hackers start a request on the hardware lab?
# HACKERS_CAN_REQUEST = True