Feature/monorepo #95 (#105)

Move repository into a monorepo with turborepo and pnpm.
This is a big change in the way the code is organized, used and deployed.
This commit is contained in:
Matti Nannt
2022-10-13 09:46:43 +02:00
committed by GitHub
parent 2d63249f63
commit 5c378bc8ce
210 changed files with 6064 additions and 5021 deletions

View File

@@ -1,31 +0,0 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/javascript-node-postgres
// Update the VARIANT arg in docker-compose.yml to pick a Node.js version
{
"name": "Node.js & PostgreSQL",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspace",
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"dbaeumer.vscode-eslint"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// This can be used to network with other containers or with the host.
"forwardPorts": [
// frontend
3000,
// postgres
5432
],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "yarn install && yarn prisma migrate dev",
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node"
}