Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions frameworks/Luau/lute/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Lute Benchmarking Test

[Lute](https://github.com/aatxe/lute) is a runtime for [Luau](https://luau.org/), a typed scripting language derived from Lua.

## Test URLs
### JSON

http://localhost:3000/json

### PLAINTEXT

http://localhost:3000/plaintext
26 changes: 26 additions & 0 deletions frameworks/Luau/lute/benchmark_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"framework": "lute",
"tests": [
{
"default": {
"json_url": "/json",
"plaintext_url": "/plaintext",
"port": 3000,
"approach": "Realistic",
"classification": "Platform",
"database": "None",
"framework": "None",
"language": "Luau",
"flavor": "None",
"orm": "None",
"platform": "None",
"webserver": "None",
"os": "Linux",
"database_os": "Linux",
"display_name": "Lute",
"notes": "",
"versus": "None"
}
}
]
}
19 changes: 19 additions & 0 deletions frameworks/Luau/lute/lute.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM ubuntu:24.04

EXPOSE 3000

WORKDIR /app

RUN apt-get update && apt-get install -y curl unzip

COPY rokit.toml .

RUN curl -sSf https://raw.githubusercontent.com/rojo-rbx/rokit/main/scripts/install.sh | bash

ENV PATH="/root/.rokit/bin:${PATH}"

RUN rokit install --no-trust-check

COPY ./src .

CMD ["sh", "-c", "lute parallel.luau -- $(nproc)"]
7 changes: 7 additions & 0 deletions frameworks/Luau/lute/rokit.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file lists tools managed by Rokit, a toolchain manager for Roblox projects.
# For more information, see https://github.com/rojo-rbx/rokit

# New tools can be added by running `rokit add <tool>` in a terminal.

[tools]
lute = "aatxe/[email protected]"
Loading
Loading