Skip to content

Commit

Permalink
Add run configuratiions for cc scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
c0d1ngm0nk3y committed Jul 10, 2024
1 parent efda5e7 commit adea39d
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 0 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions .devcontainer/configs/vscode/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,34 @@
"DB_CONNECTION_STRING": "postgres://postgres:supersecret@localhost:5432/ccdb",
"CLOUD_CONTROLLER_NG_CONFIG": "tmp/cloud_controller.yml"
}
},
{
"name": "[Mariadb] CC Scheduler",
"type": "rdbg",
"request": "launch",
"useBundler": true,
"cwd": "${workspaceRoot}",
"command": "bin/rake",
"script": "clock:start",
"env": {
"DB": "mysql",
"DB_CONNECTION_STRING": "mysql2://root:supersecret@localhost:3306/ccdb",
"CLOUD_CONTROLLER_NG_CONFIG": "tmp/cloud_controller.yml"
}
},
{
"name": "[Postgres] CC Scheduler",
"type": "rdbg",
"request": "launch",
"useBundler": true,
"cwd": "${workspaceRoot}",
"command": "bin/rake",
"script": "clock:start",
"env": {
"DB": "postgres",
"DB_CONNECTION_STRING": "postgres://postgres:supersecret@localhost:5432/ccdb",
"CLOUD_CONTROLLER_NG_CONFIG": "tmp/cloud_controller.yml"
}
}
]
}

0 comments on commit adea39d

Please sign in to comment.