Skip to content

Commit a10b0ea

Browse files
Add devcontainer configuration for Python environment
Signed-off-by: Imfromfuture3000 <imfromfuture3000@gmail.com>
1 parent baa33b5 commit a10b0ea

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "Dream-Mind-Lucid SKALE Dev Environment",
3+
"image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye",
4+
"features": {
5+
"ghcr.io/devcontainers/features/python:1": {
6+
"version": "3.11"
7+
},
8+
"ghcr.io/devcontainers-contrib/features/poetry:2": {}
9+
},
10+
"postCreateCommand": "pip install -r requirements.txt && sudo apt update && sudo apt install -y solc cmake g++-11 libssl-dev libprocps-dev",
11+
"customizations": {
12+
"vscode": {
13+
"extensions": [
14+
"github.copilot",
15+
"github.copilot-chat",
16+
"ms-python.python",
17+
"nomicfoundation.hardhat-solidity",
18+
"juanblanco.solidity",
19+
"redhat.yaml",
20+
"eamodio.gitlens",
21+
"esbenp.prettier-vscode"
22+
],
23+
"settings": {
24+
"terminal.integrated.defaultProfile.linux": "bash",
25+
"editor.formatOnSave": true
26+
}
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)