Skip to content
This repository has been archived by the owner on Sep 15, 2022. It is now read-only.

Latest commit

 

History

History
44 lines (30 loc) · 656 Bytes

README.md

File metadata and controls

44 lines (30 loc) · 656 Bytes

Code4Ukraine:UAber app

Pre-installed

Install

Below you can find a simple guide how to install all required python dependencies:

Create & activate virtualenv

python3 -m venv venv
. venv/bin/active

Install Python dependencies

pip install -U pip wheel pip-tools
pip install -r requirements.txt

Run MongoDB

mkdir -p bin/data/db
docker-compose up mongodb

Run UAber API

cd uaber-api
uvicorn main:app --reload

Run UAber API & MongoDB from Docker

docker-compose up --build