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 3dabedd89b
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details
Merge branch 'main' into update-bdd
1 year ago
src Merge branch 'main' into update-bdd 1 year ago
.dockerignore Dockerise 1 year ago
.drone.yml Recommend tsx 2 years ago
.gitignore Implement a database and an API for it (#2) 1 year ago
Dockerfile Dockerise 1 year ago
README.md Update for planificador protocol changes 2 years ago
dprint.json Add a live edit mode 1 year ago
package.json Implement Login and Registration (#6) 1 year ago
tsconfig.json Dockerise 1 year 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