-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (44 loc) · 1.35 KB
/
.env.example
File metadata and controls
51 lines (44 loc) · 1.35 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Flask app settings
FLASK_ENV=production
FLASK_DEBUG=False
FLASK_PORT=8000
FLASK_HOST=0.0.0.0
SECRET_KEY=11111111111111111111111111
# Paths
DB_PATH=example/path/to/database.db
# Scheduler
SCHEDULER_INTERVAL_SEC=600
SCHEDULER_FIRST_RUN_SEC=5
# Email for Certbot
CERTBOT_EMAIL=your-mail@mail.com
# Fetchers Credentials
GITHUB_USERNAME=yourusername
GITHUB_PLATFORM_URL=https://github.com/yourusername
INAT_USERNAME=yourusername
INAT_PLATFORM_URL=https://www.inaturalist.org/user/yourusername
TELEGRAM_USERNAME=yourusername
TELEGRAM_PLATFORM_URL=https://t.me/yourusername
LASTFM_USERNAME=yourusername
LASTFM_PLATFORM_URL=https://www.last.fm/user/yourusername
LASTFM_API_KEY=8888888888888888888888888888888
LINKEDIN_USERNAME=yourusername
LINKEDIN_LAST_UPDATE_DATE=1999-23-12
LINKEDIN_PLATFORM_URL=https://www.linkedin.com/in/yourusername
FLIGHTRADAR_USERNAME=yourusername
FLIGHTRADAR_PLATFORM_URL=https://my.flightradar24.com/yourusername
# Mail settings
MAIL_SERVER=smtp.gmail.com
MAIL_PORT=587
MAIL_USE_TLS=true
MAIL_USERNAME=your-mail@gmail.com
MAIL_PASSWORD=app-specific-password
MAIL_DEFAULT_SENDER=noreply@gmail.com
MAIL_RECIPIENT=your-mail@gmail.com
# Turnstile Configuration
TURNSTILE_SITE_KEY=0x4AAAAAAACCCCCCCCCCCCCCCC
TURNSTILE_SECRET_KEY=0x4AAAAAAABBBBBBBBBBBBBBBB
# For development do:
# FLASK_ENV=development
# FLASK_DEBUG=True
# FLASK_PORT=5000
# FLASK_HOST=127.0.0.1