2020-12-09 11:31:28 +00:00
|
|
|
{
|
|
|
|
"name": "Chatwoot Development Codespace",
|
|
|
|
"service": "app",
|
|
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
|
|
|
|
|
|
"settings": {
|
|
|
|
"terminal.integrated.shell.linux": "/bin/zsh"
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
|
|
"extensions": [
|
|
|
|
"rebornix.Ruby",
|
|
|
|
"misogi.ruby-rubocop",
|
2021-07-14 06:54:09 +00:00
|
|
|
"wingrunr21.vscode-ruby",
|
|
|
|
"davidpallinder.rails-test-runner",
|
|
|
|
"eamodio.gitlens",
|
|
|
|
"github.copilot",
|
|
|
|
"mrmlnc.vscode-duplicate"
|
2020-12-09 11:31:28 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
// 5432 postgres
|
|
|
|
// 6379 redis
|
|
|
|
// 1025,8025 mailhog
|
2022-06-16 21:37:07 +00:00
|
|
|
"forwardPorts": [8025, 3000, 3035],
|
2020-12-09 11:31:28 +00:00
|
|
|
|
2021-07-06 15:51:40 +00:00
|
|
|
"postCreateCommand": ".devcontainer/scripts/setup.sh && bundle exec rake db:chatwoot_prepare && yarn",
|
2021-06-29 13:48:10 +00:00
|
|
|
"portsAttributes": {
|
|
|
|
"3000": {
|
|
|
|
"label": "Rails Server"
|
|
|
|
},
|
2022-06-16 21:37:07 +00:00
|
|
|
"3035": {
|
|
|
|
"label": "Webpack Dev Server"
|
|
|
|
},
|
2021-06-29 13:48:10 +00:00
|
|
|
"8025": {
|
|
|
|
"label": "Mailhog UI"
|
|
|
|
}
|
2022-06-16 21:37:07 +00:00
|
|
|
}
|
2020-12-09 11:31:28 +00:00
|
|
|
}
|