Skip to content

tin3ga/toDo

Repository files navigation

toDo

Simple ToDo web application.

Docker Image Build Vercel Deploy GitHub top language GitHub License GitHub last commit

Technologies

Demo

toDo Gif

Quick Start

  1. Clone the repo:
$ git clone https://github.com/tin3ga/toDo.git
$ cd toDo
  1. 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
  1. Install the dependencies:
$ pip install -r requirements.txt
  1. Navigate to todo:
$ cd todo
  1. Run the development server:
$ python main.py
  1. Navigate to http://localhost:5000

Build and start the application using Docker Compose:

  1. Build images and run containers in the background, run:
docker compose up -d --build

Visit http://localhost in your web browser.

Stopping the Application

  1. To stop the application and remove the containers, run:
docker compose down --rmi local