-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
45 lines (31 loc) · 969 Bytes
/
.env.example
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
# Example .env file. Please fill in the values.
# Port to run the api on
API_PORT=5000
# Port to run the scraper on
SCRAPER_PORT=5001
# The name of the MongoDB database, must be same as scraper.
MONGO_DATABASE=popcorn-api-development
# The URI to the MongoDB database.
MONGO_URI=127.0.0.1
# The port of the MongoDB database.
MONGO_PORT=27017
# The username of the MongoDB database, disable if none.
MONGO_USER=
# The password of the MongoDB database, disable if none.
MONGO_PASS=
# The url to the scraper
SCRAPER_URL=http://localhost:5001
# Location where to download everything in, make sure this location exists
# Also must be a absolute path
DOWNLOAD_LOCATION=
# Username of your opensubtitles account
OPENSUBTITLES_USERNAME=
# Password of your opensubtitles account
OPENSUBTITLES_PASSWORD=
# API key for Trakt
TRAKT_KEY=
TMDB_KEY=
# The time between cronjobs.
CRON_TIME='0 0 3 * * *'
# Should the scraper start scraping on start
SCRAPE_ON_START=false