Simple application written in Django for keeping tabular notes.
The application consists of several modules: tv_series, ...
In each module you can add, edit, delete, sort and filter records.
Module for saving information about watched TV series.
Viewed TV series journal
View and edit record of journal
- Local name series
- Original name series
- Watch status (watching, full watched, waiting next season etc.)
- Last watched season
- Last watched series
- Last watched date
- Your rating
- Comment
- Install Python 3
pip install --upgrade pip && pip install -r requirements.txt
- Create db:
./manage.py migrate
./manage.py runserver [port]
- Install Docker and Docker Compose
- Create production db (once):
export DJANGO_SETTINGS_MODULE=main.settings_prod && ./manage.py migrate
- Run docker container (it will build container if not exists):
docker-compose up
- Force rebuild docker container and run:
docker-compose up --build
- Force rebuild docker container and run:
- Open in browser:
http://localhost:8001