Skip to content

veken1199/CityLibraries

Repository files navigation

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