Django project for managing cooks in the kitchen
Data for test application:
- Username: ivan_cook
- Password: qTBr6oAPfDMUirYEiqBk
- Use the following command to load prepared data from the fixture to test and debug your code:
python manage.py loaddata kitchen_service_db_data.json
.
Kitchen service project deployed to Render
git clone https://github.com/mdubyna/kitchen-service.git
cd kitchen-service
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver
- Authentication functionality for Cook/User
- Managing cooks, dishes and dish types directly from the website interface
- Powerful admin panel for advanced managing
This project uses the following environment variables:
- DJANGO_SECRET_KEY - for set up SECRET_KEY
- DJANGO_DEBUG - for DEBUG
- DATABASE_URL - for url to project database (db.sqlite3 is used by default)