Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/diazdavilajesus16-stack/Sevicheria-Mar-sabroso/llms.txt

Use this file to discover all available pages before exploring further.

Before running the application, you need to clone the repository and install its Python dependencies. The project requires Python 3.12 or higher and uses Django as its web framework along with Gunicorn as the WSGI server.
Use a virtual environment to keep this project’s dependencies isolated from other Python projects on your system. This avoids version conflicts and makes dependency management cleaner.
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

Prerequisites

Before you begin, make sure the following tools are installed:

Installation steps

1

Clone the repository

Download the project source code from GitHub:
git clone https://github.com/diazdavilajesus16-stack/Sevicheria-Mar-sabroso.git
cd Sevicheria-Mar-sabroso
2

Create and activate a virtual environment

Isolate the project’s dependencies in a virtual environment:
python -m venv .venv
source .venv/bin/activate
On Windows, activate with:
.venv\Scripts\activate
3

Install dependencies

Install Django and Gunicorn from requirements.txt:
pip install -r requirements.txt
This installs two packages:
  • Django — the full-stack web framework powering the restaurant site, including the ORM, admin panel, URL routing, and templating engine.
  • Gunicorn — a production-grade WSGI HTTP server used to serve the Django application in non-development environments.
Once installation completes, continue to Running locally to start the development server.

Build docs developers (and LLMs) love