initial commit

This commit is contained in:
callum5892
2026-03-09 22:15:35 +00:00
commit 771a68a6d5
4 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
"name": "msgsave",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.pylance",
"charliermarsh.ruff",
"ms-python.debugpy"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff"
}
}
},
"postCreateCommand": "pip install -e .[dev]",
"remoteEnv": {
"DISCORD_TOKEN": "${localEnv:DISCORD_TOKEN}"
}
}