Skip to content
This repository has been archived by the owner on Apr 21, 2020. It is now read-only.

Infrastructure Overview

CodeBlock edited this page Apr 7, 2013 · 4 revisions

Right now, the goal is to keep things as simple as possible.

There is a development/demo box hosted by @danopia at http://develtest.eval.so/.

It tracks "close to" HEAD, but is not automatically synced with HEAD.

Right now, no authentication is required to get to the box, but we might introduce basic auth in front of the instance, if it becomes necessary. The demo is meant to be just that -- a demo. Have fun with it, try it out. But expect it to break, too.

If you use the awesome HTTPie tool, you can try out the instance by doing this:

http --json http://develtest.eval.so/api/evaluate language=ruby code="puts 1+1"

Otherwise, with Curl:

curl -H 'Content-Type: application/json' http://develtest.eval.so/api/evaluate -d '{"language": "ruby", "code": "puts 1+1"}'

Clone this wiki locally