mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 08:15:09 +00:00
Switches default local setup to PostgreSQL and ARM64 Updates local development environment to use PostgreSQL instead of MariaDB by default, aligns configuration and documentation, and switches Docker service platforms to ARM64 for broader compatibility. Improves developer experience and readiness for ARM-based systems.
39 lines
No EOL
1,013 B
JSON
39 lines
No EOL
1,013 B
JSON
{
|
|
"name": "Frappe Bench",
|
|
"forwardPorts": [
|
|
8000,
|
|
9000,
|
|
6787
|
|
],
|
|
"remoteUser": "frappe",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"ms-vscode.live-server",
|
|
"grapecity.gc-excelviewer",
|
|
"mtxr.sqltools",
|
|
"mtxr.sqltools-driver-pg",
|
|
"visualstudioexptteam.vscodeintellicode",
|
|
"ms-vscode-remote.remote-containers",
|
|
"vue.volar"
|
|
],
|
|
"settings": {
|
|
"terminal.integrated.profiles.linux": {
|
|
"frappe bash": {
|
|
"path": "/bin/bash"
|
|
}
|
|
},
|
|
"terminal.integrated.defaultProfile.linux": "frappe bash",
|
|
"debug.node.autoAttach": "disabled"
|
|
}
|
|
}
|
|
},
|
|
"dockerComposeFile": "./docker-compose.yml",
|
|
"service": "frappe",
|
|
"workspaceFolder": "/workspace/development",
|
|
"shutdownAction": "stopCompose",
|
|
"mounts": [
|
|
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.ssh,target=/home/frappe/.ssh,type=bind,consistency=cached"
|
|
]
|
|
} |