-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
30 lines (26 loc) · 861 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
# Backend Configuration
PORT=3000
MONGODB_URI=mongodb://localhost:27017/grocery-dev
CORS_ORIGIN=http://localhost:3000
LOG_LEVEL=debug
# Frontend Configuration
REACT_APP_API_URL=http://localhost:3000/api
REACT_APP_ENABLE_LOGGING=true
REACT_APP_STORAGE_TYPE=memory
# Data Collection Configuration
FLIPP_BASE_URL=https://backflipp.wishabi.com/flipp
FLIPP_MERCHANTS_ENDPOINT=/merchants
FLIPP_ITEMS_SEARCH_ENDPOINT=/items/search
FLIPP_FLYERS_ENDPOINT=/flyers
FLIPP_ITEMS_ENDPOINT=/items
FLIPP_DATA_ENDPOINT=/data
FLIPP_CAT_DICT_ENDPOINT=/cat_dict
FLIPP_LOCALE=en-ca
POSTAL_CODES=N2G4G7,M5R2E3,N2L3G1,K7L3N6
# MongoDB Configuration
MONGO_USER=your_username
MONGO_PASSWORD=your_password
MONGO_HOST=your_host
MONGO_DB=your_database
# CORS Configuration
CORS_ORIGINS=http://localhost:3000,https://your-domain.com,https://your-username.github.io,http://localhost:5173