Skip to content

Commit

Permalink
no precompile
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesward committed Jun 22, 2012
1 parent 59199cf commit b345bbd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
web: play run --http.port=$PORT $PLAY_OPTS
hello: java -Dapplication.path=. -Dplay.id=prod -Dprecompiled=true -DlogLevel=INFO -cp "precompiled/java:lib/*:conf:.play/framework/play-1.2.4.jar:.play/framework/lib/*" jobs.HelloJob .
hello: java -Dapplication.path=. -Dplay.id=prod -DlogLevel=INFO -cp "precompiled/java:lib/*:conf:.play/framework/play-1.2.4.jar:.play/framework/lib/*" jobs.HelloJob .
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Simple Play 1.2.4 App with a Job
This little app shows how you can do simple one-off and scheduled jobs within Play 1.2.4 apps on Heroku. These jobs run in separate processes from the Play 1 web server.


## Running Locally


export DATABASE_URL=postgres://f:f@localhost/f
java -Dapplication.path=. -Dplay.id=prod -DlogLevel=INFO -cp lib/*:conf:/home/jamesw/play-1.2.4/framework/play-1.2.4.jar:/home/jamesw/play-1.2.4/framework/lib/*:tmp/classes jobs.HelloJob .

## Running on Heroku

Clone this project locally:
Expand Down

0 comments on commit b345bbd

Please sign in to comment.