Skip to content

Mafixdeveloping/FoodChooser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FoodChooser

A web application for randomized cooking ideas.

Docker

docker build -t foodchooser-app .
docker run -d -p 5000:5000 foodchooser-app

Installing (Linux recommended)

  • Install Python 3
sudo apt-get update
sudo apt-get install python3
  • Creating and activating the virtual environment
python3 -m venv venv
source venv/bin/activate
  • Install the modules
pip install -r requirements.txt
  • Create the .env file with the session key example:
KEY=secret
  • Launch the software
cd flask
gunicorn -w 4 -b 0.0.0.0:5000 main:app

© Copyrights 2025 by Mafixdeveloping