Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 872 Bytes

readme.md

File metadata and controls

39 lines (30 loc) · 872 Bytes

CircleCI

CityLibraries

Simple web application build in Python flask and React to allow students to search in multiple public libraries at the same time. It also allows users to share their books of interest for one week with everyone else on the platform

untitled

Install python dependencies:

python -m pip install -r requirements

Create Web bundle for the frontend:

cd static
npm install
npm run build

Run the application

python main.py

Navigate to http://localhost:5000

Use docker

docker build -t cityapp .
docker run -p 5000:5000 cityapp

Run the tests

python -m unittest