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

Latest commit

 

History

History
34 lines (23 loc) · 514 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 514 Bytes

Coding Challenge App

A skeleton flask app to use for a coding challenge.

Install:

You can use a virtual environment (conda, venv, etc):

conda env create -f environment.yml
source activate user-profiles

Or just pip install from the requirements file

pip install -r requirements.txt

Running the code

Spin up the service

# start up local server
python -m run 

Making Requests

curl -i "http://127.0.0.1:5000/health-check"

What'd I'd like to improve on...