Skip to content

Commit

Permalink
Codespaces config (GoogleChrome#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
arichiv authored Dec 13, 2024
1 parent eaad9a7 commit a3cb31c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "Default",
"image": "mcr.microsoft.com/devcontainers/python:3.13",
"features": {
"ghcr.io/devcontainers-extra/features/black:latest": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"github.vscode-github-actions"
]
}
},
"postCreateCommand": "pip3 install -r requirements.txt"
}
12 changes: 8 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@

version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: "daily"
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ use GitHub pull requests for this purpose. Consult
information on using pull requests.

Any modified python code must conform to the standards of [black](https://github.com/psf/black).

Contributors, especially those modifying more than just `related_website_sets.JSON`, are encouraged to use [Codespaces](https://docs.github.com/en/codespaces/setting-up-your-project-for-codespaces/adding-a-dev-container-configuration/setting-up-your-python-project-for-codespaces) as all the packages you need will be set up for you.

0 comments on commit a3cb31c

Please sign in to comment.