A Django web application for culinary management.
- Python 3.8+
- pip
- Docker and Docker Compose
- Clone the repository:
git clone <repository-url>
cd culina- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate- Install dependencies:
pip install -r requirements.txt- Run migrations:
python manage.py migrate- Create a superuser:
python manage.py createsuperuser- Run the development server:
python manage.py runserverThe application will be available at http://localhost:8000
- Build and run with Docker Compose:
docker-compose up --build- Run migrations (in a new terminal):
docker-compose exec web python manage.py migrate- Create a superuser:
docker-compose exec web python manage.py createsuperuserThe application will be available at http://localhost:8000
To stop the containers:
docker-compose down