mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
17 lines
618 B
JSON
17 lines
618 B
JSON
{
|
|
"name": "Ruby and Node DevContainer",
|
|
"dockerComposeFile": ["docker-compose.yml"],
|
|
"service": "dawarich_dev",
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "bash"
|
|
},
|
|
"extensions": [
|
|
"rebornix.ruby", // Ruby-Support
|
|
"esbenp.prettier-vscode", // Prettier for JS-Formating
|
|
"dbaeumer.vscode-eslint" // ESLint for JavaScript
|
|
],
|
|
"postCreateCommand": "yarn install && bundle config set --local path 'vendor/bundle' && bundle install --jobs 20 --retry 5",
|
|
"forwardPorts": [3000], // Redirect to Rails-App-Server
|
|
"remoteUser": "root",
|
|
"workspaceFolder": "/var/app"
|
|
}
|