Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 1.63 KB

README.md

File metadata and controls

27 lines (21 loc) · 1.63 KB

Eatrip

A Python-Django based Food Ordering Application. This helps Restaurants to Track/Modify/Create/Edit Orders. Also makes it easy for customer to order food through iOS application. It has Create/Delete/Modify/track order feature with real-time updates.

Getting Started

Prerequisites & Installation

  1. Python
    • Download & Installing python >= 2.7 from here
  2. Virtualenv
    • using virtulenv, it creates isolated Python environments.
      virtualenv [name_of_vevn] # to create virtual environment.
      source [venv]/bin/activate # to activate the virtual envrionment.
  3. Install Development Dependencies.
    pip install -r requirements/development.txt
  4. Now we will create our Django project.
    • django-admin startproject [Name_of_App]
    • cd [Name_of_App]
  5. Running the web application locally
  • python manage.py runserver # 127.0.0.1:8000

WorkFlow

It is advised to fork or clone the repository and make local running test. All the changes and features can be added after running test locally and creating an issue. Please refer this guide for more details on Environments, Static resources, adding apps and deployment.

Contribute

No matter the level of expertise, I would love to hear about the features and bugs project involves. Raise an issue, make a PR. Even a miniscule contribution to the project would make it more meaningful and eventually more robust.