Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.08 KB

README.md

File metadata and controls

40 lines (28 loc) · 1.08 KB

Kitchen-service

Django project for managing cooks in the kitchen

Check it out!

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

Installation

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

Features

  • Authentication functionality for Cook/User
  • Managing cooks, dishes and dish types directly from the website interface
  • Powerful admin panel for advanced managing

Environment variables

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)