forked from SixBytesUnder/infoboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
92 lines (82 loc) · 3.69 KB
/
.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Define where your background images should come from
## available options [local|single|nasa|unsplash|pexels|flickr]
IMAGES_SOURCE=nasa
## images directory from which to take images shown as background. Traverses all subfolders as well
IMAGES_DIR='/media/path/to/images/'
## if SINGLE_IMAGE value is "true", then the very first image found in IMAGES_DIR will be used and will never change
SINGLE_IMAGE=false
## number of seconds for how long one background image stays on before switching to next in line
IMAGE_INTERVAL=60
## toggle showing "next image" and "next folder" buttons in the bottom right corner
NAV_BUTTONS=true
## show EXIF data button
EXIF=true
# Magic Mirror mode
## Setting it to `true` will overwrite any "IMAGE" setting. Just solid black background and all white text for high contrast
MAGIC_MIRROR=false
# Auto Expand - automatically open collapsable elements
## useful if infoboard will be displayed on a non-touch screen
AE_TFL=false
AE_FORECAST=false
AE_WEATHER_DETAILS=false
AE_CALENDAR=false
# NASA Picture of the day
## apply for API key here: https://api.nasa.gov/index.html#apply-for-an-api-key
NASA_KEY=DEMO_KEY
# Unsplash photos
## register for a free account and generate your API keys https://unsplash.com/
UNSPLASH_ACCESS=
UNSPLASH_SECRET=
UNSPLASH_CALLBACK_URL=""
## show images tagged with current weather conditions
## if set to false, Unsplash will return random images
UNSPLASH_WEATHER_TAGGED=true
# Pexels photos
## register for a free account and generate your API key https://www.pexels.com/api/
PEXELS_KEY=
## search for images tagged with current weather conditions
## if set to false, Pexels will return curated images
PEXELS_WEATHER_TAGGED=true
# Flickr images
## there's no option for random image, therefore Flickr images are always weather tagged
## Create a new app and get your API key
FLICKR_API_KEY=
# Weather
WEATHER=true
## register for ClimCell free account https://www.climacell.co/weather-api/pricing/
## and generate your API key for a free version
WEATHER_API_KEY=
## latitude and longitude of location for weather forecast
WEATHER_LAT=51.507388
WEATHER_LON=-0.127768
## location name to be displayed above temperature - informational purpose only
WEATHER_LOCATION_NAME="London, UK"
## units type to display temperature in. Possible values [si] for Metric and [us] for Royal unit system
WEATHER_UNITS=si
## list of data fields for current weather. Notice, pollen data is only for USA
## full referrence: https://developer.climacell.co/v3/reference#data-layers-weather
WEATHER_FIELDS=temp,feels_like,humidity,wind_speed,wind_gust,baro_pressure,surface_shortwave_radiation,moon_phase,weather_code,pm25,pm10,o3,no2,co,so2,epa_health_concern,pollen_tree,pollen_weed,pollen_grass
## round temperature to the nearest integer
WEATHER_ROUNDED=true
# Transport for London
TFL=true
## create a free TfL account and register your app https://api.tfl.gov.uk/
TFL_APP_ID=
TFL_APP_KEY=
## comma separated list of London bus stop codes. Find your bus code here: https://tfl.gov.uk/travel-information/stations-stops-and-piers/
TFL_BUS_STOPS=490013767T,490013767T
## service status for London transport other than buses
TFL_STATUS=tube,overground,dlr,tflrail,tram
# Time and date options
## Check https://momentjs.com/docs/#/displaying/ for documentation
TIME_FORMAT="HH:mm:ss"
DATE_FORMAT="dddd, Do MMMM YYYY"
# Calendar events in iCal format
## shows up to 10 events from the next 60 days
CALENDAR_ENABLE=true
CALENDAR_DATE_FORMAT="YYYY-MM-DD"
CALENDAR_TIME_FORMAT="HH:mm"
## for Google Calendar go to settings for your calendar and
## paste below a link from "Public address in iCal format" section
CALENDAR_ICAL=""
CALENDAR_LIMIT=10