Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
skarppi committed Jan 20, 2024
2 parents 34b1f6f + 966715d commit 6b5f3b2
Show file tree
Hide file tree
Showing 142 changed files with 90,156 additions and 4,221 deletions.
22 changes: 22 additions & 0 deletions .devcontainer/node/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:0-20"

// 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": "yarn install",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
22 changes: 22 additions & 0 deletions .devcontainer/python/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// 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:3.12"

// 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": "pip3 install --user -r requirements.txt",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
36 changes: 17 additions & 19 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
**/.DS_Store
build/
htmlcov/
icloudpd.egg-info
cron_script.sh
Photos/
.vscode
**/__pycache__
.pytest_cache/
.cache
*.pyc
.idea
.coverage
.coverage.*
.git
tests/fixtures/Photos
tests/fixtures/中文
.venv
venv
**/.DS_Store
build/
htmlcov/
icloudpd.egg-info
cron_script.sh
.vscode
**/__pycache__
.pytest_cache/
.cache
*.pyc
.idea
.coverage
.coverage.*
.git
tests/
.venv
venv
create/
Loading

0 comments on commit 6b5f3b2

Please sign in to comment.