Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.22 KB

README.md

File metadata and controls

42 lines (25 loc) · 1.22 KB

Chicago Salaries Data API

A barebones Django app, which can easily be deployed to Heroku.

This application supports the Getting Started with Python on Heroku article - check it out.

Running Locally

Make sure you have Python 3.7 installed locally. To push to Heroku, you'll need to install the Heroku CLI

* Fork this repo on github
* Clone your fork and cd into that directory
* Create a new virtualenv for this API
* Run `make requirements` to install the requirements for the API
* Run `heroku local`

Your app should now be running on localhost:5000.

Visit http://localhost:5000/employees to see the list of employees in JSON.

Deploying to Heroku

$ heroku create
$ git push heroku master

$ heroku open

Documentation

For more information about using Python on Heroku, see these Dev Center articles: