- Predictive Analysis: Use machine learning models to make predictions.
- Recipe Management: Manage and retrieve recipes efficiently.
Make sure you have Python installed on your system. The recommended version is Python 3.8 or higher.
-
Clone the repository:
git clone <repository_url> cd rechef-backend
-
Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the required dependencies:
pip install -r requirements.txt
To run the application, execute the main.py
script:
fastapi dev app/main.py
The application will start running on http://127.0.0.1:8000
.
The API endpoints are documented using Swagger UI. You can access the documentation by visiting http://127.0.0.1:8000/docs
.