Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,36 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Python 3",
"name": "Stellaris Chain Dev Container",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye",
"features": {
"ghcr.io/devcontainers-extra/features/pipenv:2": {},
"ghcr.io/devcontainers-extra/features/pipx-package:1": {},
"ghcr.io/itsmechlark/features/redis-server:1": {},
"ghcr.io/devcontainers/features/rust:1": {}
"ghcr.io/devcontainers/features/rust:1": {},
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers-extra/features/node-asdf:0": {},
"ghcr.io/devcontainers-extra/features/pnpm:2": {},
"ghcr.io/devcontainers-extra/features/typescript:2": {},
"ghcr.io/jsburckhardt/devcontainer-features/uv:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.vscode-pylance"
"ms-python.vscode-pylance",
"JuanBlanco.solidity"
]
},
"settings": {
"security.workspace.trust.enabled": false,
"telemetry.telemetryLevel": "off",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/usr/bin/zsh"
}
}
}
},

Expand All @@ -29,7 +45,7 @@
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "cargo install --git https://github.com/RustPython/RustPython rustpython",
"postCreateCommand": "bash /workspaces/stellaris-chain/scripts/post_create.sh",

// Configure tool-specific properties.
// "customizations": {},
Expand Down
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/data
/build
/dist
/dist
.pypirc
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ __pycache__
struct
*.log
flag.txt
.pypirc
# I swear, I'm not a vibe coder, I just use GROK, to make sure that I follow decent coding practices
grok.txt
install-docker.sh
Expand All @@ -20,4 +21,9 @@ target
json-loader.sh
dev-configs
stellaris-prototype
stellaris-prototype-v2
stellaris-prototype-v2
*.egg-info
.pypirc
stellaris-chain.egg-info
node_modules
.pnpm-store
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include LICENSE
include README.md
recursive-include tests *.py
Loading
Loading