[#32] added setup in readme and support to missing applist.js

This commit is contained in:
Camille Moussu
2025-08-19 14:07:37 +02:00
committed by Benoit TELLIER
parent aa498ac91f
commit 290c7f301b
2 changed files with 19 additions and 2 deletions
+17 -1
View File
@@ -75,7 +75,23 @@ And then visit [https://localhost:5000](https://localhost:5000).
## Configuring it
More details to be supplied when available.
### App grid
An applist is configurable in the public folder to setup the grid of app accessible within Twake Calendar.
Each app has three fields:
- name: the apps name
- icon: the link to the apps icon
- link: the apps link or URL
Example:
```js
var appList = [
{ name: "My App", icon: "https://myapp.com/myapp.png", link: "https://myapp.com" },
];
```
## Roadmap