Skip to content

jamesward/playscalapython

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Run locally

Start the Play JSON server:

cd jsonserver
play deps
play run

Test the JSON server:
http://localhost:9000

Start the Python JSON client (and HTML server):

cd jsonclient
pip install -r requirements.txt
python web.py

Test the Python JSON client:
http://localhost:5000

Run on Heroku

Deploy the Play JSON server:

cd jsonserver
git init
git add .
git commit -m init
heroku create -s cedar
git push heroku master

Deploy the Python JSON client:

cd jsonclient
git init
git add .
git commit -m init
heroku create -s cedar
heroku config:add JSON_SERVICE_URL=http://replacewiththeurltotheplayapp.herokuapp.com
git push heroku master

Test the Python JSON client:

heroku open

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published