No description
Find a file
Finn Christiansen 85ece04b43
All checks were successful
Python formatting PEP8 / Python-PEP8 (push) Successful in 19s
ci / docker (push) Successful in 1m41s
📝 update repository URL in README
2024-05-26 22:16:52 +02:00
.gitea/workflows 👷 add PEP8 workflow 2023-11-09 22:12:18 +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 repository URL in README 2024-05-26 22:16:52 +02: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 code.f2n.me/finn/reminder:latest

non-Docker

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

git clone https://code.f2n.me/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