twenty/.devcontainer/devcontainer.json
2023-06-23 08:43:41 -07:00

28 lines
790 B
JSON

{
"name": "Twenty Codespace",
"image": "node:18.16.0",
"features": {
"ghcr.io/devcontainers-contrib/features/jshint:2": {}
},
"forwardPorts": [3000, 3001, 5432],
"postCreateCommand": "echo 'To start the server, run yarn start command in server and front folder'",
"customizations": {
"vscode": {
"extensions": [
"styled-components.vscode-styled-components",
"dbaeumer.vscode-eslint",
"unifiedjs.vscode-mdx",
"ms-vscode.makefile-tools",
"ms-azuretools.vscode-docker",
"esbenp.prettier-vscode",
"GraphQL.vscode-graphql",
"prisma.prisma",
"unifiedjs.vscode-mdx",
"yoavbls.pretty-ts-errors",
"graphql.vscode-graphql-syntax",
"graphql.vscode-graphql"
]
}
}
}