Hi, I`m a student learning backend web developement and this is my first python django portfolio-project.
This is a simple app that allows you to create countdowns to watch how your favorite events are coming. You can create a countdown for any time in future, specify description, text that will be visible when countdown finishes and share the link with friends. Also, authenticated users can bookmark countdowns and press buttons with emoji to show their reaction.
Clone the repository:
git clone https://github.com/kokokojo2/CountDown
cd CountDownMake and activate virtual environment:
python -m venv countdown_env
countdown_env\Scripts\activateInstall needed requirements:
pip install -r requirements.txtCreate sqlite3 database:
python manage.py makemigrations
python manage.py migrateRun developement server:
python manage.py runserverAfter following these steps, open this url in your browser to check out the work of application.
