forked from DMarby/picsum-photos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
26 lines (26 loc) · 923 Bytes
/
config.json
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
{
"production": {
"folder_path": "/opt/photos",
"cache_folder_path": "/opt/unsplash-it/cache",
"image_store_path": "/opt/unsplash-it/images.json",
"stats_path": "/opt/unsplash-it/stats.json",
"metadata_path": "/opt/photos/metadata.json",
"max_height": 5000,
"max_width": 5000,
"stats_port": 3000,
"port": 5000,
"cache_metadata_path": "/opt/unsplash-it/cache.json"
},
"development": {
"folder_path": "../unsplash-downloader/photos",
"cache_folder_path": "/Users/DMarby/Projects/2014/unsplash-it/cache",
"image_store_path": "./images.json",
"stats_path": "./stats.json",
"metadata_path": "../unsplash-downloader/photos/metadata.json",
"max_height": 5000,
"max_width": 5000,
"stats_port": 3000,
"port": 5000,
"cache_metadata_path": "./cache.json"
}
}