2018-12-29 18:31:10 +01:00
|
|
|
# reminder
|
|
|
|
A simple python Flask application which adds reminders to every event in a given ICS file.
|
2018-12-30 09:47:27 +01:00
|
|
|
|
|
|
|
See it in action at https://reminder.pimux.de
|
2023-11-09 19:13:09 +01:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
### Docker
|
|
|
|
|
2024-05-26 22:16:52 +02:00
|
|
|
`docker run code.f2n.me/finn/reminder:latest`
|
2023-11-09 19:13:09 +01:00
|
|
|
|
|
|
|
### non-Docker
|
|
|
|
|
|
|
|
Clone the repo, install Python virtual environment, configure webserver (or use some wsgi server)
|
|
|
|
|
|
|
|
```
|
2024-05-26 22:16:52 +02:00
|
|
|
git clone https://code.f2n.me/finn/reminder.git reminder
|
2023-11-09 19:13:09 +01:00
|
|
|
cd reminder
|
|
|
|
virtualenv .
|
|
|
|
. bin/activate
|
|
|
|
pip install -r requirements.txt
|
|
|
|
cp apache_sample_config.php /etc/apache2/sites-available/my-reminder.exmaple.org.conf
|
|
|
|
a2ensite my-reminder.exmaple.org.conf
|
|
|
|
```
|