@@ -58,11 +58,13 @@ You can use the following optional environment variables to configure/customise
58
58
- ` BGBRIGHT: 90 ` - Background image brightness percentage.
59
59
- ` UNSPLASHAPIKEY ` - An API key for Unsplash, enables fetching random background images from Unsplash.
60
60
- ` UNSPLASHCOLLECTIONS ` - List of Unsplash collection ID's (separated by commas) to select random images from.
61
+ - ` ALTBGPROVIDER ` - An alternative background provider url.
61
62
- ` OWMAPIKEY ` - An API key for Open Weather Map, LATLONG (below) must also be defined.
62
63
- ` LATLONG ` - A latitude and longitude for the default location (e.g. "51.509865,-0.118092").
63
64
- ` METRICTEMP: 'true' ` - Metric (C) or imperial (F) temperature units.
64
65
- ` NOINDEX: 'true' ` - Include a robots noindex meta tag in site header
65
66
- ` CACHEBYPASS: 'true' ` - Bypass all caches, useful for testing changes.
67
+ - ` WWWURL ` - Useful if Jump is hosted in a sub-directory.
66
68
67
69
** NOTE:** The ` OWMAPIKEY ` and ` LATLONG ` config options must be defined together.
68
70
@@ -120,12 +122,18 @@ Edit the `/sites/sites.json` file to include your own sites on the startpage...
120
122
{
121
123
"name" : " Github" ,
122
124
"url" : " https://github.com/daledavies/jump" ,
125
+ "description" : " This is an example description" ,
123
126
"nofollow" : false ,
124
127
"newtab" : true
125
128
},
129
+ {
130
+ "name" : " Docker Hub" ,
131
+ "url" : " https://hub.docker.com/r/daledavies/jump"
132
+ },
126
133
{
127
134
"name" : " Bitwarden" ,
128
135
"url" : " https://bitwarden.example.com" ,
136
+ "description" : " This is another example of a site with a description" ,
129
137
"icon" : " bitwarden.png" ,
130
138
"tags" : [" stuff" ]
131
139
},
@@ -149,15 +157,16 @@ Edit the `/sites/sites.json` file to include your own sites on the startpage...
149
157
},
150
158
{
151
159
"name" : " Google" ,
152
- "url" : " https://www.google.com"
160
+ "url" : " https://www.google.com" ,
161
+ "nofollow" : false
153
162
}
154
163
]
155
164
}
156
165
157
166
```
158
167
159
168
* ` name ` and ` url ` are mandatory.
160
- * ` tags ` , ` nofollow ` , ` newtab ` and ` icon ` are optional.
169
+ * ` description ` , ` tags ` , ` nofollow ` , ` newtab ` and ` icon ` are optional.
161
170
162
171
#### Tags
163
172
0 commit comments