mirror of
https://github.com/sern-handler/automata
synced 2026-06-21 23:32:18 +00:00
* refactor: initial monorepo * chore: remove accidentally commited repos * chore: remove accidentally commited repos * feat: more progress * feat: finally monorepo done * feat: move away from pocketbase * fix: seren's reviews and schema frontend login errors * fix: for some reason didn't remove await lol
26 lines
1000 B
JSON
26 lines
1000 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
|
|
{
|
|
"name": "Node.js & TypeScript",
|
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
"image": "mcr.microsoft.com/devcontainers/typescript-node:0-20",
|
|
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
// "features": {},
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
"forwardPorts": [4000],
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
"postCreateCommand": "bash ./apps/api/util/setup.sh",
|
|
|
|
// Configure tool-specific properties.
|
|
// "customizations": {},
|
|
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
// "remoteUser": "root"
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
|
|
}
|
|
}
|