Setting up a local environment lets you run, modify, and test Orange County Lettings on your own machine. The steps below walk you through cloning the repository and creating an isolated Python virtual environment so project dependencies do not interfere with your system Python.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/OpenClassrooms-Student-Center/Python-OC-Lettings-FR/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Before you begin, make sure the following tools are available on your machine:- Git — to clone the repository
- Python 3.6 or later — the interpreter used to run the application
- SQLite3 CLI — to inspect the development database
Create the virtual environment
- macOS / Linux
- Windows (PowerShell)
Create the virtual environment
python -m venv venv.Verify the Python interpreter
Confirm that The path returned by
python resolves to the interpreter inside the virtual environment:which python should point inside the venv/ directory, and the version should be 3.6 or higher.Next steps
Quickstart
Install dependencies and run the development server.