mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
53c6a0e0c6
* chore!i 👽 Enhance dev container YAML Enhance dev container YAML to meet standards and integrate personal GitHub environment token Refactored the existing dev container YAML configuration to adhere to best practices and coding standards. This includes optimizing container setup and dependencies for smoother development workflows. Additionally, integrated a personal GitHub environment token for secure authentication and access to GitHub resources within the container environment. This improvement enhances both security and usability, streamlining the development process. * chore 💄 Fixed earlier commit Earlier commit fixed using pre-commit
34 lines
944 B
JSON
34 lines
944 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",
|
|
"visualstudioexptteam.vscodeintellicode"
|
|
],
|
|
"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",
|
|
"postStartCommand": "sudo service ssh start",
|
|
"mounts": [
|
|
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.ssh,target=/home/frappe/.ssh,type=bind,consistency=cached"
|
|
]
|
|
}
|