mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 06:02:22 -05:00
Adds support for [devcontainers](https://containers.dev/), this should make onboarding easier and should allow (especially simpler) contributions entirely online via Github Codespaces 🚀
15 lines
530 B
JSON
15 lines
530 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 development",
|
|
"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"
|
|
}
|