Web service for lists of different kind. Like, shopping lists, to-do lists or else.
Semi functional: items can be added or deleted
- deploy somewhere for others to test
- add user login
- make lists private
- add static handling
- add css styles
- add pictures and icons
- make amount changeable
To deploy - from the root folder:
docker-compose up -d --build
Then go to http://127.0.0.1:5000
To switch containers off:
docker-compose down -v
To deploy - from the root folder:
docker-compose -f docker-compose.prod.yml up -d --build
To build the data base with initial tables & values:
docker-compose -f docker-compose.prod.yml exec web python manage.py create_db
To switch containers off:
docker-compose -f docker-compose.prod.yml down -v