From 6d6a7bd9634d6760edf74698f59df461b97e4727 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 13 Aug 2026 08:49:05 +0000 Subject: [PATCH] Add Cloud Agent dev environment for profile README preview Co-authored-by: andrew --- .cursor/environment.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .cursor/environment.json diff --git a/.cursor/environment.json b/.cursor/environment.json new file mode 100644 index 0000000..0faa3ee --- /dev/null +++ b/.cursor/environment.json @@ -0,0 +1,17 @@ +{ + "name": "Chargebee GitHub profile", + "install": "pip3 install --user --break-system-packages grip", + "terminals": [ + { + "name": "readme-preview", + "command": "python3 -m grip profile/README.md 0.0.0.0:6419 --context=chargebee/.github", + "description": "Live GitHub-accurate preview of profile/README.md, served at http://localhost:6419" + } + ], + "ports": [ + { + "name": "README preview", + "port": 6419 + } + ] +}