Skip to content

cygnus55/food-express

Repository files navigation

Food Express

Introduction

Food Express-Home Food Express-Restaurant Detail

Food Express is an online food delivery application providing restaurants and customers a platform to sell and buy cuisines respectively.

It is developed using Django web-framework and uses SQL-based database. It uses Python programming language for the rest of backend work.

Getting Started

Set up virtual environment and install the dependencies using the commands:

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Then run the Django development server using:

python manage.py runserver

To create a superuser (admin) account, run:

python manage.py createsuperuser

Navigate to localhost:8000 in your browser.

Developers