An open API service indexing awesome lists of open source software.

https://github.com/plietar/pony-playpen

A web interface for running Pony code
https://github.com/plietar/pony-playpen

pony-language

Last synced: 12 months ago
JSON representation

A web interface for running Pony code

Awesome Lists containing this project

README

          

A web interface for running Pony code.

# Running your own Pony-Playpen

## System Requirements

Currently needs to be run on a system with access to Docker.

## Running the web server

First, create the Docker image that playpen will use:

```
docker build docker -t ponylang-playpen
```

Next, spin up the server.

```
cargo run --bin playpen
```

You should now be able to browse http://127.0.0.1:8080 and interact.

## Building for production

```
docker run --rm -it -v $HOME/.cargo/registry/:/home/rust/.cargo/registry -v $PWD:/home/rust/src ekidd/rust-musl-builder:nightly cargo build --release
```