Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
16 commits
Select commitHold shift + click to select a range
1bb789f
feat: add devcontainers configuration
gmargaritisNov 21, 2024
6657011
refactor: add lint, http-serve, preview, http-preview make commands
gmargaritisNov 21, 2024
5910de1
refactor: update contributing.md contents
gmargaritisNov 21, 2024
bcf23da
chore: add eol in devcontainer.json
gmargaritisNov 21, 2024
e9a0e1e
docs: revert removal of tips on powrap for windows users
gmargaritisNov 21, 2024
f7b35c3
chore: fix typos in contributing.md
gmargaritisNov 21, 2024
ac182fd
docs: add devcontainers section in CONTRIBUTING.md
gmargaritisNov 27, 2024
d950723
docs: improve linting tools and preview section in CONTRIBUTING.md
gmargaritisNov 27, 2024
13f1990
docs: update social media urls in CONTRIBUTING.md
gmargaritisNov 27, 2024
4499005
docs: fix typos in README.md and CONTRIBUTING.md
gmargaritisNov 29, 2024
d89c6e9
Translated distributing/index.po (#566)
artemislnDec 4, 2024
793d3ff
Translate file howto/pyporting.po (#568)
mgiannopoulos24Dec 9, 2024
610850f
Added another step on contributing.md to avoid pip install issue (#571)
mgiannopoulos24Dec 9, 2024
c415d12
Merge branch '3.12' into introduce-devcontainers-config
gmargaritisDec 11, 2024
218b13e
Merge branch '3.12' into introduce-devcontainers-config
gmargaritisJan 13, 2025
e4dced3
Apply suggestions from code review
lysnikolaouFeb 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions.devcontainer/devcontainer.json
View file
Open in desktop
Original file line numberDiff line numberDiff 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"
}
Loading

[8]ページ先頭

©2009-2025 Movatter.jp