Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

axrav/_todoFlask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Simple Todo App in Flask

A todo backend written in flask

Requirements

  • Python3.10
  • PIP

Run Locally on a Linux Machine

git clone https://github.com/axrav/_todoFlask
cd _todoFlask/todo_app
vim .env # fill with your values look onto sample.env
pip3 install -r requirements.txt
python3 -m gunicorn app:app --bind 0.0.0.0:${PORT} --workers 4 
## make sure you have set the port in env or use a port here

Run using docker

git clone https://github.com/axrav/_todoFlask
cd _todoFlask/todo_app
vim .env # fill with your values look onto sample.env
docker image build -t todo_image .
docker run -p {YOURPORT:YOURPORT} -d --name {name} -e PORT={YOURPORT} todo_image

Tools used

About

simple todo application in flask

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published