forked from ContriHUB/ContriHUB-24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_env_file.txt
47 lines (39 loc) · 1.3 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
40
41
42
43
44
45
46
47
# 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
BASE_URL=contrihub/
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'
# Database settings
DB_NAME=<your-db-name>
DB_USER=<your-db-user>
DB_PASSWORD=<your-db-password>
DB_HOST=<your-db-host>
DB_PORT=<your-db-port>