Welcome to the Little Lemon project! This is a Django-based web application.
- Python 3.x
- Django 3.x or higher
-
Create and Activate a Virtual Environment:
python3 -m venv venv source venv/bin/activate # macOS/Linux venv\Scripts\activate # Windows
-
Install Dependencies:
python3 -m pip install -r requirements.txt
-
Apply Migrations:
python3 manage.py migrate
-
Create a Superuser (Optional):
python3 manage.py createsuperuser
To start the development server, run:
python3 manage.py runserver
The application will be accessible at http://127.0.0.1:8000/
.