A simple full-stack web application that periodically fetches a list of Dispatched Calls for Service from the Orange County, FL Sheriff's Office. Results are then displayed on a map.
python3 -m pip install -r requirements.txt -U
python3 -m pip install aiohttp-devtools
GOOGLE_MAPS_API_KEY="..." python -m aiohttp.web -P 3000 main:init
python3 -m pip install -r requirements.txt -U
python3 -m pip install uvloop
GOOGLE_MAPS_API_KEY="..." gunicorn main:init_async -b 0.0.0.0:3000 --worker-class aiohttp.GunicornUVLoopWebWorker
docker build -t zspri/ocso-active-calls-map .
docker run -p 3000 zspri/ocso-active-calls-map