https://github.com/rombotlabs/foodchooser
A web application for randomized cooking ideas.
https://github.com/rombotlabs/foodchooser
flask food html jinja python random raspberry-pi raspberrypi student student-managed
Last synced: about 2 months ago
JSON representation
A web application for randomized cooking ideas.
- Host: GitHub
- URL: https://github.com/rombotlabs/foodchooser
- Owner: RombotLabs
- License: mit
- Created: 2025-08-03T11:39:17.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-10-01T15:15:43.000Z (8 months ago)
- Last Synced: 2025-10-01T17:26:12.100Z (8 months ago)
- Topics: flask, food, html, jinja, python, random, raspberry-pi, raspberrypi, student, student-managed
- Language: HTML
- Homepage: https://rombotlabs.github.io/FoodChooser/
- Size: 143 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# 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