Set up development environment + document Cursor Cloud setup#2
Draft
nanehambardzumyan wants to merge 1 commit into
Draft
Set up development environment + document Cursor Cloud setup#2nanehambardzumyan wants to merge 1 commit into
nanehambardzumyan wants to merge 1 commit into
Conversation
Co-authored-by: Nane Hambardzumyan <nanehambardzumyan@users.noreply.github.com>
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
Sets up and verifies the development environment for the API Client Simulator (CodeSignal Bespoke template). Adds durable, non-obvious setup/run guidance to
AGENTS.mdunder## Cursor Cloud specific instructions.The update script (run automatically on VM startup) installs deps and initializes the design-system submodule:
What was verified
npm install— 376 packages installed.git submodule update --init --recursive— initializesclient/design-system(required for styled UI).npm run build— Vite build succeeds (benign font-resolution warnings only).npm run start:dev— Vite on :3000 + API on :3001, both healthy.node scripts/smoke-test.mjs— demo CRUD endpoints pass (200/201/200/200/200).GET /demo-api/health(200) andPOST /demo-api/users{"name":"Alice"}(201).Walkthrough
api_simulator_hello_world.mp4
API Client Simulator loads styled and returns a live 200 for the health check.
GET 200 response
POST 201 response creating user Alice
Notes
lint/testnpm script and no ESLint config exist in the repo (documented in AGENTS.md so future agents don't search for one).To show artifacts inline, enable in settings.