Add Cloud Agent development environment - #53
Open
mrnugget wants to merge 2 commits into
Open
Conversation
- Install Hugo Extended 0.157.0 (matches netlify.toml pin) via idempotent install script - Verify production build during install - Run 'hugo serve' as a persistent terminal on port 1313 Co-authored-by: Thorsten Ball <[email protected]>
Co-authored-by: Thorsten Ball <[email protected]>
mrnugget
marked this pull request as ready for review
August 14, 2026 08:18
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a Cursor Cloud Agent development environment for the monkeylang.org Hugo site so future agents can build and preview the site out of the box. This is a repo-managed environment: the committed
.cursor/environment.jsonis the highest-precedence config and takes effect automatically once merged.The site is a Hugo Extended project (it compiles Bootstrap SCSS via
toCSS/libsass inlayouts/_default/baseof.html) pinned to Hugo0.157.0innetlify.toml. The default Cloud Agent image ships Go and Node but not Hugo, so the environment installs the matching Hugo Extended release.Changes
.cursor/install.sh— idempotent install script that installs Hugo Extended0.157.0(kept in sync with theHUGO_VERSIONpin innetlify.toml), skips the download when the correct version is already present, and runshugo --gc --minifyso setup fails loudly on a broken checkout..cursor/environment.json— runs the install script, exposes port1313, and startshugo serve -D --disableFastRenderas a persistent terminal (the dev command documented inREADME.md)..gitignore— ignore Hugo's.hugo_build.lock, which the dev server creates.Validation
Validated end-to-end on the current VM and on a fresh Cloud Agent booted from a draft build of this branch (
bld-20260814-01fb285d-...):0.157.0+extendedhugo --gc --minify)hugo serve)localhost:1313, serves ~98 KB compiled stylesheet, renders all sectionsRendered site served by the environment's dev server:
monkeylang_site_dev_server_walkthrough.mp4
To show artifacts inline, enable in settings.