This guide walks you through setting up the Rendón Burgers application on your local machine. You will need Python 3.8 or later,Documentation Index
Fetch the complete documentation index at: https://mintlify.com/EduCabrera-k/Menu_Hamburguesas/llms.txt
Use this file to discover all available pages before exploring further.
pip, and a MongoDB Atlas account with a cluster already created.
Steps
Install dependencies
Install the required Python packages from This installs the following packages:
requirements.txt:| Package | Purpose |
|---|---|
flask | Web framework and routing |
pymongo | MongoDB driver |
dnspython | Required for mongodb+srv:// URIs |
gunicorn | Production WSGI server |
Configure your MongoDB Atlas connection
Open The application uses three collections inside
app.py and replace the placeholder value of MONGO_URI with your Atlas connection string:rendon_burger_db: pedidos_activos, historial_ventas, and inventario_stock. These are created automatically on first use if they do not exist.Start the development server
Run the Flask development server:Flask starts on port 5000 with debug mode enabled. You will see output similar to:
The application has three views you can access directly:
/— Customer menu (order placement)/cocina— Kitchen dashboard (order queue management)/reporte— Daily sales report