No description
Find a file
Finn Christiansen 28073593d3
All checks were successful
ci / docker (push) Successful in 1m18s
🐛 fix broken file upload
2023-11-09 21:48:18 +01:00
.gitea/workflows 👷 build amd64 and arm64 docker image 2023-11-09 18:56:06 +01:00
app 🐛 fix broken file upload 2023-11-09 21:48:18 +01:00
.gitignore 🙈 add .env to .gitignore 2023-11-09 21:12:16 +01:00
apache_sample_config.conf 🎉 Huge update, added Python virtualenv, updated dependencies... 2023-11-07 20:28:19 +01:00
docker-compose.yml 👷 add docker compose file 2023-11-09 21:12:45 +01:00
Dockerfile 👷 add docker syntax directive and update workdir 2023-11-08 22:05:46 +01:00
LICENSE Initial commit 2018-12-29 18:28:30 +01:00
README.md 📝 update README, add installation instructions 2023-11-09 19:13:09 +01:00
reminder.wsgi update wsgi file for virtual environment 2023-11-07 20:54:27 +01:00
requirements.txt 👷 add Dockerfile 2023-11-07 21:46:53 +01:00

reminder

A simple python Flask application which adds reminders to every event in a given ICS file.

See it in action at https://reminder.pimux.de

Installation

Docker

docker run gitea.pimux.de/finn/reminder:latest

non-Docker

Clone the repo, install Python virtual environment, configure webserver (or use some wsgi server)

git clone https://gitea.pimux.de/finn/reminder.git reminder
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