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.
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.