I have a project I'm running on an Intranet within my school's network. I'm using CIJoe for a CI, and I would like to set up a post-receive hook on Github to point to Joe. However, because it's on Intranet (not Internet), I cannot directly POST to it.
The solution I came up with is a Heroku app that receives the hook, the makes the payload available as an API. Then I'd have another Sinatra app, this time within the Intranet that will get that payload from the Heroku app and POST it to Joe.
I know this is far from ideal, but, because it's a project for a school, it cannot be online.
There must be a better way to do this.