Skip to content
Open
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
14 changes: 14 additions & 0 deletions .hoplite/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": 1,
"ports": {"preview": 3000, "additional": {}},
"scripts": {
"setup": {
"enabled": true,
"command": "set -e\n# git-lfs — required by the platform's source-control tooling\nif ! command -v git-lfs >/dev/null 2>&1; then\n apt-get install -y git-lfs >/dev/null 2>&1 || true\nfi\n# Go toolchain — go.mod requires go >= 1.25; symlink onto PATH\nif ! command -v go >/dev/null 2>&1 || ! go version 2>/dev/null | grep -qE 'go1\\.(2[5-9]|[3-9])'; then\n curl -fsSL -o /tmp/go.tgz https://go.dev/dl/go1.25.0.linux-amd64.tar.gz\n rm -rf /opt/go && tar -C /opt -xzf /tmp/go.tgz && rm -f /tmp/go.tgz\n ln -sf /opt/go/bin/go /usr/local/bin/go\n ln -sf /opt/go/bin/gofmt /usr/local/bin/gofmt\nfi\n# Poetry — lockfile is Poetry 2.x format; run from ~/.local/bin (already on PATH)\nif ! command -v poetry >/dev/null 2>&1; then\n uv tool install poetry==2.4.1 >/dev/null 2>&1 || pip3 install --user --break-system-packages poetry==2.4.1 >/dev/null 2>&1\nfi"
},
"run": {"enabled": true, "command": null},
"archive": {"enabled": true, "command": null},
"check": {"enabled": true, "command": null}
},
"mcpServers": []
}
Loading