You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Clément FRÉVILLE
1741f5d0cf
continuous-integration/drone/push Build is passing
Details
|
5 months ago | |
---|---|---|
src | 5 months ago | |
.dockerignore | 5 months ago | |
.drone.yml | 10 months ago | |
.gitignore | 6 months ago | |
Dockerfile | 5 months ago | |
README.md | 10 months ago | |
dprint.json | 6 months ago | |
package.json | 5 months ago | |
tsconfig.json | 5 months ago |
README.md
labyrinth
The HTTP backend for the Sandkasten website.
Compiling and executing
npm install
npm run start
Endpoints
POST /run
Runs a program and returns the output with an event stream.
The stream always defines a id
in each event. It may be:
id | Description |
---|---|
stdout |
The event contains the output of the program. |
stderr |
The event contains the error output of the program. |
exit |
The event contains the exit code of the program. |
Bun support
Pending #5019