mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
52 lines
2.1 KiB
JSON
52 lines
2.1 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.162.0/containers/codespaces-linux
|
|
{
|
|
"name": "GitHub Codespaces for GDevelop",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/zsh",
|
|
"go.toolsManagement.checkForUpdates": "off",
|
|
"go.useLanguageServer": true,
|
|
"go.gopath": "/go",
|
|
"go.goroot": "/usr/local/go",
|
|
"python.pythonPath": "/opt/python/latest/bin/python",
|
|
"python.linting.enabled": true,
|
|
"python.linting.pylintEnabled": true,
|
|
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
|
|
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
|
|
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
|
|
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
|
|
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
|
|
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
|
|
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
|
|
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
|
|
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint",
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
"files.watcherExclude": {
|
|
"**/target/**": true
|
|
}
|
|
},
|
|
"remoteUser": "codespace",
|
|
"overrideCommand": false,
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/home/codespace/workspace,type=bind,consistency=cached",
|
|
"workspaceFolder": "/home/codespace/workspace",
|
|
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", "--privileged", "--init" ],
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"GitHub.vscode-pull-request-github",
|
|
"esbenp.prettier-vscode",
|
|
"ms-vscode.cpptools",
|
|
"xaver.clang-format",
|
|
"flowtype.flow-for-vscode"
|
|
],
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [],
|
|
|
|
// "oryx build" will automatically install your dependencies and attempt to build your project
|
|
"postCreateCommand": "oryx build -p virtualenv_name=.venv || echo 'Could not auto-build. Skipping.'"
|
|
}
|