Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jouve committed Sep 29, 2024
1 parent 594fbcb commit c6822dd
Show file tree
Hide file tree
Showing 7 changed files with 265 additions and 289 deletions.
35 changes: 35 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Debian",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:bookworm",

// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"configureZshAsDefaultShell": true
},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers/features/python:1": {
"toolsToInstall": "poetry"
}
},

// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"charliermarsh.ruff",
"GitHub.vscode-github-actions",
"tamasfe.even-better-toml"
]
}
}

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
32 changes: 0 additions & 32 deletions Makefile

This file was deleted.

151 changes: 64 additions & 87 deletions poetry.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ starlette = "*"
uvicorn = "*"

[tool.poetry.group.dev.dependencies]
mypy = "*"
pyright = "*"
ruff = "*"
supervisor = "*"

Expand All @@ -29,6 +29,7 @@ line-length = 120
[tool.ruff.lint]
extend-select = [ "ALL" ]
extend-ignore = [
"ANN201",
"COM812",
"D",
"ISC001",
Expand Down
Loading

0 comments on commit c6822dd

Please sign in to comment.