forked from CyrilMishra/ContriHUB-22
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_env_file.txt
39 lines (32 loc) · 1.14 KB
/
sample_env_file.txt
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
# Name of your environment file should be ".env"
# You can create this file by running "touch .env" command.
# In Windows, run this command using Git Bash.
# CAUTION: Never push environment file to remote repository (In this project its already added in .gitignore)
# -------- SAMPLE ENV CONTENT FOR THIS PROJECT STARTS FROM BELOW -------
SECRET_KEY = '<enter_secret_key_here>'
DEBUG = True
SOCIAL_AUTH_GITHUB_KEY = '<enter_client_id>'
SOCIAL_AUTH_GITHUB_SECRET = '<enter_secret_id>'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = '<enter_email>'
EMAIL_HOST_PASSWORD = '<enter_password>'
EMAIL_USE_TLS = True
EMAIL_USE_SSL = False
AVAILABLE_PROJECTS = 'ContriHUB-21;piratetube;Connect-Four-Game'
LABEL_MENTOR = 'mentor'
LABEL_LEVEL = 'level'
LABEL_POINTS = 'points'
LABEL_RESTRICTED = 'restricted'
DEPENDABOT_LOGIN = 'dependabot[bot]'
MAX_SIMULTANEOUS_ISSUE = '2'
DAYS_PER_ISSUE_FREE = '1'
DAYS_PER_ISSUE_VERY_EASY = '1'
DAYS_PER_ISSUE_EASY = '1'
DAYS_PER_ISSUE_MEDIUM = '2'
DAYS_PER_ISSUE_HARD = '3'
DEFAULT_FREE_POINTS = '0'
DEFAULT_VERY_EASY_POINTS = '2'
DEFAULT_EASY_POINTS = '10'
DEFAULT_MEDIUM_POINTS = '20'
DEFAULT_HARD_POINTS = '30'