Skip to content

Commit

Permalink
Merge pull request #30 from kurmann/29-setup-python-with-poetry
Browse files Browse the repository at this point in the history
Python CLI-Anwendung erstellt zur Pflege von Zielen
  • Loading branch information
kurmann authored Aug 28, 2024
2 parents 0a4135c + 9a4bb2d commit 9b90bdb
Show file tree
Hide file tree
Showing 40 changed files with 280 additions and 1,053 deletions.
33 changes: 33 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// 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",
// 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 to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// 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":
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"github.copilot",
"be5invis.toml",
"ms-python.python",
"qwtel.sqlite-viewer"
]
}
},
// "features": {
// "ghcr.io/nikobockerman/devcontainer-features/poetry-persistent-cache:1": {}
// }

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

This file was deleted.

12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
Loading

0 comments on commit 9b90bdb

Please sign in to comment.