A Django web app to track your anime watching progress. Users can register, log in, add anime to their watchlist, update progress, and remove tracked anime.
- User registration and authentication
- Add, update, and delete anime tracking entries
- Progress bar for watched episodes
- Responsive UI with Bootstrap
git clone https://github.com/yourusername/Anime-Watch-Tracker.git
cd Anime-Watch-Trackerpython -m venv venv
# On Windows:
venv\Scripts\activate
# On Unix/macOS:
source venv/bin/activatepip install -r requirements.txtpython AnimeWebsite/manage.py migratepython AnimeWebsite/manage.py createsuperuserpython AnimeWebsite/manage.py runserverVisit http://127.0.0.1:8000/ in your browser.
- To deactivate the virtual environment, run
deactivate. - The database file
db.sqlite3is ignored by git. - For deployment, update
ALLOWED_HOSTSand setDEBUG = FalseinAnimeWebsite/settings.py.
- Built by Shikhar
- Project Showcase
- Source Code on GitHub