Simple ToDo web application.
- Clone the repo:
$ git clone https://github.com/tin3ga/toDo.git
$ cd toDo
- Initialize and activate a virtualenv:
# windows
$ python -m venv venv
$ venv\Scripts\activate
# mac/linux
$ python -m venv venv
$ source env/bin/activate or . venv/bin/activate
- Install the dependencies:
$ pip install -r requirements.txt
- Navigate to todo:
$ cd todo
- Run the development server:
$ python main.py
- Navigate to http://localhost:5000
- Build images and run containers in the background, run:
docker compose up -d --build
Visit http://localhost in your web browser.
- To stop the application and remove the containers, run:
docker compose down --rmi local