A simple flask calendar application with events manager.
Explore the docs »
·
Report Bug
·
Request Feature
Table of Contents
I am making something with an integreted calender with events managment. This is not something you can find here a lot. So I made one with some help. It is simple to install and use. Redis was used for database.
Note: Redis is an in-memory database program but all the versions I used do store data in the drive as well. So a system reboot won't clear the database.
To get this program up and running follow these simple steps.
Install Redis.
sudo apt install -y redis
sudo systemctl enable redis
sudo systemctl start redis
- Clone the repo
git clone https://github.com/hanzala123/Flask_calendar.git
- Go to the directory
cd Flask_calendar
- Install the requirements
pip3 install -r requirements.txt
- Enter your password in the
config.py
WEB_PASSW = YOUR_PASSWORD_HERE
Start the program using
python3 main.py
Open your browser and visit http://localhost:8080/
Log in using the crendetials. The Default username is admin and password is 12345. You can change the password in the config.py file.
Note: It is wise to use the Remove all events button every year to keep everything fast and optimized.
Contributions are always welcome. See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Your Name - Hanzala Ibn Zahid
Project Link: https://github.com/hanzala123/Flask_calendar