From 07af9257f4bae78d2c60fde4cde7c8a8f2897574 Mon Sep 17 00:00:00 2001 From: Keysat Date: Fri, 12 Jun 2026 16:05:18 -0500 Subject: [PATCH] Add VS Code launch config for CRM preview --- .claude/launch.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .claude/launch.json diff --git a/.claude/launch.json b/.claude/launch.json new file mode 100644 index 0000000..d85f967 --- /dev/null +++ b/.claude/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.0.1", + "configurations": [ + { + "name": "crm-preview", + "runtimeExecutable": "bash", + "runtimeArgs": ["-c", "CRM_DB_PATH=/tmp/crm_preview.db CRM_DATA_DIR=/tmp/crm_preview_data CRM_FRONTEND_DIR=/Users/macpro/Projects/CRM/frontend CRM_PORT=8765 CRM_ENV=development exec python3 backend/server.py"], + "port": 8765 + } + ] +}