This is the backend for the Recipe App project. It is built with Django and provides RESTful APIs for managing recipes.
-
Clone the repository:
git clone <repository-url>
-
Navigate to the project directory:
cd recipe-app-backend
-
Install dependencies:
pip install -r requirements.txt
-
Create a
.env
file in the project root directory:DEBUG=True SECRET_KEY=<your-secret-key>
Replace with a secure random string
-
Apply migrations:
python manage.py migrate
-
To start the deployment server, run:
python manage.py runserver
-
The server will start at
http://localhost:8000/