mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-20 04:50:45 +09:00
***개발자가 사용할 수 있는 커밋 메시지를 제안합니다.*** ***커밋 메시지는 코드의 변경 사항을 간결하게 설명하는 짧고 간결한 메시지여야 합니다.*** ***커밋 메시지는 ***로 시작하고 ***로 끝나야 합니다.*** ***커밋 메시지는 다음 로캘로 번역되어야 합니다: ko
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
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/miniconda
|
|
{
|
|
"name": "Miniconda (Python 3)",
|
|
// Configure tool-specific properties.
|
|
"hostRequirements": {
|
|
"cpus": 4,
|
|
"memory": "16gb",
|
|
"storage": "32gb"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"ms-toolsai.jupyter",
|
|
"donjayamanne.python-extension-pack",
|
|
"ms-python.black-formatter",
|
|
"github.vscode-github-actions"
|
|
]
|
|
}
|
|
},
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/nvidia-cuda:1": {
|
|
"installCudnn": true
|
|
},
|
|
"ghcr.io/devcontainers/features/conda:1": {
|
|
"version": "latest",
|
|
"addCondaForge": true
|
|
},
|
|
"ghcr.io/devcontainers/features/python:1": {
|
|
"installTools": true,
|
|
"version": "3.10"
|
|
}
|
|
},
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [],
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
"postCreateCommand": [
|
|
"conda env create --file environment.yaml --name pso"
|
|
]
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
// "remoteUser": "root"
|
|
} |