This is example of food ordering system.
P.S: This website is not for a real company. Inspired from different ecommerce projects to design and build it.
- User register/login with JWT token
- Foods with different categories
- User create/update/delete an order for products
- Permission checking for modifying orders
Back-end Rest Api:
- Django
- Django Rest Framework
In order to run the application in local environment follow instructions below:
# clone
git clone https://github.com/rasimatics/Foodie-backend.git
cd Foodie-backend
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver