A simple Django app to track how many times a user has visited a page in total till date.
Built while learning Django, now deployed live at echobash.pythonanywhere.com.
Check out the app here:
๐ https://echobash.pythonanywhere.com/
- Counts visits per user session
- Simple Django model for tracking
- Styled with clean HTML & CSS
- Deployed using PythonAnywhere
- Python 3.9+
- Django 4.x
- SQLite (default DB)
Follow these steps to run the project locally:
git clone https://github.com/echobash/miniprojects.git
cd miniprojectspython3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activatepip install djangopython manage.py migratepython manage.py runserverNow open your browser and go to: ๐ http://localhost:8000