this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add devcontainer

+28
+16
.devcontainer/devcontainer.json
··· 1 + { 2 + "name": "Ubuntu", 3 + "image": "mcr.microsoft.com/devcontainers/base:noble", 4 + "features": { 5 + "ghcr.io/devcontainers/features/python:1": { 6 + "installTools": true, 7 + "optimize": true, 8 + "enableShared": true, 9 + "version": "3.13" 10 + }, 11 + "ghcr.io/devcontainers-extra/features/poetry:2": { 12 + "version": "latest" 13 + } 14 + }, 15 + "postCreateCommand": "poetry install" 16 + }
+12
.github/dependabot.yml
··· 1 + # To get started with Dependabot version updates, you'll need to specify which 2 + # package ecosystems to update and where the package manifests are located. 3 + # Please see the documentation for more information: 4 + # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 + # https://containers.dev/guide/dependabot 6 + 7 + version: 2 8 + updates: 9 + - package-ecosystem: "devcontainers" 10 + directory: "/" 11 + schedule: 12 + interval: weekly