Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork19
Introduce devcontainers configuration#564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
gmargaritis merged 16 commits intopython:3.12fromgmargaritis:introduce-devcontainers-configFeb 20, 2025
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
16 commits Select commitHold shift + click to select a range
1bb789f feat: add devcontainers configuration
gmargaritis6657011 refactor: add lint, http-serve, preview, http-preview make commands
gmargaritis5910de1 refactor: update contributing.md contents
gmargaritisbcf23da chore: add eol in devcontainer.json
gmargaritise9a0e1e docs: revert removal of tips on powrap for windows users
gmargaritisf7b35c3 chore: fix typos in contributing.md
gmargaritisac182fd docs: add devcontainers section in CONTRIBUTING.md
gmargaritisd950723 docs: improve linting tools and preview section in CONTRIBUTING.md
gmargaritis13f1990 docs: update social media urls in CONTRIBUTING.md
gmargaritis4499005 docs: fix typos in README.md and CONTRIBUTING.md
gmargaritisd89c6e9 Translated distributing/index.po (#566)
artemisln793d3ff Translate file howto/pyporting.po (#568)
mgiannopoulos24610850f Added another step on contributing.md to avoid pip install issue (#571)
mgiannopoulos24c415d12 Merge branch '3.12' into introduce-devcontainers-config
gmargaritis218b13e Merge branch '3.12' into introduce-devcontainers-config
gmargaritise4dced3 Apply suggestions from code review
lysnikolaouFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
47 changes: 47 additions & 0 deletions.devcontainer/devcontainer.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| { | ||
| "name": "Python Translation Devcontainer", | ||
| "image": "python:3.12-slim", | ||
| "customizations": { | ||
| "vscode": { | ||
| "extensions": [ | ||
| "eamodio.gitlens", | ||
| "github.vscode-pull-request-github", | ||
| "github.vscode-github-actions", | ||
| "redhat.vscode-yaml", | ||
| "gettext.gettext", | ||
| "restructuredtext.restructuredtext" | ||
| ], | ||
| "settings": { | ||
| "[python]": { | ||
| "editor.formatOnSave": true, | ||
| "editor.codeActionsOnSave": { | ||
| "source.organizeImports": "always" | ||
| } | ||
| }, | ||
| "python.defaultInterpreterPath": "/usr/local/bin/python3", | ||
| "terminal.integrated.defaultProfile.linux": "zsh", | ||
| "terminal.integrated.profiles.linux": { | ||
| "zsh": { | ||
| "path": "/bin/zsh" | ||
| } | ||
| }, | ||
| "terminal.integrated.env.linux": { | ||
| "ZSH": "/bin/zsh" | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "features": { | ||
| "ghcr.io/devcontainers/features/git:1": { | ||
| "version": "latest" | ||
| }, | ||
| "ghcr.io/devcontainers/features/common-utils:2": {} | ||
| }, | ||
| "workspaceFolder": "/python-docs-gr", | ||
| "workspaceMount": "source=${localWorkspaceFolder},target=/python-docs-gr,type=bind,consistency=cached", | ||
| "postCreateCommand": "sudo apt-get update && sudo apt-get install -y hunspell hunspell-el && pip install -r ./requirements.txt", | ||
| "mounts": [ | ||
| "source=pip-cache,target=/home/translator/.cache/pip,type=volume" | ||
| ], | ||
| "remoteUser": "translator" | ||
| } |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.