twenty/.devcontainer/devcontainer.json

28 lines
790 B
JSON
Raw Normal View History

2023-05-25 16:56:28 +03:00
{
2023-06-14 18:20:12 +03:00
"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'",
2023-06-14 18:20:12 +03:00
"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",
2023-06-14 18:23:48 +03:00
"unifiedjs.vscode-mdx",
"yoavbls.pretty-ts-errors",
"graphql.vscode-graphql-syntax",
"graphql.vscode-graphql"
2023-06-14 18:20:12 +03:00
]
}
}
}