mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-21 06:31:58 -05:00
* [AI] Document Dev Container option in development-setup docs * [AI] Add release notes for #7729 * [AI] Update spell-check dictionary for Codespaces
12 lines
531 B
JSON
12 lines
531 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/docker-existing-docker-compose
|
|
{
|
|
"name": "Actual Devcontainer",
|
|
"dockerComposeFile": ["../docker-compose.yml", "docker-compose.yml"],
|
|
// Alternatively:
|
|
// "image": "mcr.microsoft.com/devcontainers/typescript-node:0-16",
|
|
"service": "actual-development",
|
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
|
"postCreateCommand": "yarn install"
|
|
}
|