/ToDoApp

Full Stack application made in Flask for manage tasks

Primary LanguagePython

To Do App

Introduction

Technologys

Backend

  • Python >= 3.10
  • Flask

Frontend

  • JavaScript
  • HTML
  • CSS

Run Local

With Python

  1. Install Python >= 3.10
  2. Install Poetry
  3. Install dependencies:

poetry install

  1. Start your application running:

poetry run flask run --debug

With Docker

  1. Build the repository image:

docker build . -t <image-name>

  1. Run the container:

docker run -p 5000:5000 --name <container-name> -d <image-name>:<tag>

Finish! Now the application are running in your machine!