This is a project to get quicker the current and the next classes of my school calendar.
- Create a docker compose file with the following content:
services:
app:
image: ghcr.io/isnubi/ade-viewer:latest
ports:
- 5000:5000
environment:
- ADE_URL=https://ade.example.com
- TZ=Europe/Paris
- TIME_DELTA=0
volumes:
- /etc/localtime:/etc/localtime
restart: unless-stopped
- Run the following command:
docker-compose up -d
- Open your browser and go to
http://localhost:5000
ADE_URL
: The URL of your ics ADE exportTZ
: The timezone of your calendarTIME_DELTA
: The number of hours you want to add to the current timezone
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.