-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.dist
More file actions
31 lines (22 loc) · 816 Bytes
/
.env.dist
File metadata and controls
31 lines (22 loc) · 816 Bytes
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
## Database credentials
DB_HOST="localhost"
DB_USER=""
DB_PWD=""
DB_NAME=""
## Dev modes
DEBUG_MODE=false
CACHE=true
## Encryption key
ENCRYPTION_KEY_IV=""
## SMTP credentials for sending emails
SENDER_EMAIL_NAME="Lifyzer App"
SENDER_EMAIL_ID="hello@lifyzer.com"
SENDER_EMAIL_PASSWORD=""
#### Food Data API Keys ###
SWISS_FOOD_KEY=""
USA_FOOD_KEY=""
## Food API URLs (please don't change)
URL_OPEN_FOOD_NAME_API="https://ssl-api.openfoodfacts.org/cgi/search.pl?search_simple=1&json=1&action=process&fields=product_name,ingredients_text,codes_tags,image_url,nutriments,code&search_terms="
URL_OPEN_FOOD_BARCODE_API="https://world.openfoodfacts.org/api/v0/product/"
URL_USA_FOOD_API="https://api.nal.usda.gov/fdc/v1/foods/search?api_key="
URL_SWISS_FOOD_API="https://www.foodrepo.org/api/v3/products/_search"