Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: v0.0.44
_commit: v0.0.46
_src_path: gh:LabAutomationAndScreening/copier-python-package-template
create_docs: true
description: Agent to upload files to cloud
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"ruff.nativeServer": "on",
// TODO: see if there's a way to specify different configurations for different folders
"ruff.configuration": "/workspaces/cloud-courier/ruff-test.toml", // use the test configuration since it's less restrictive and won't show false positives and underline things
"ruff.configuration": "${workspaceFolder}/ruff-test.toml", // use the test configuration since it's less restrictive and won't show false positives and underline things
"[jsonc][json][javascript][typescript][graphql][css][scss][html][vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
Expand All @@ -62,5 +62,5 @@
"initializeCommand": "sh .devcontainer/initialize-command.sh",
"onCreateCommand": "sh .devcontainer/on-create-command.sh",
"postStartCommand": "sh .devcontainer/post-start-command.sh"
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): 97460cab # spellchecker:disable-line
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): d3c847e5 # spellchecker:disable-line
}
2 changes: 2 additions & 0 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
services:
devcontainer:
# added the platform flag to override any local settings since this image is only compatible with linux/amd64.
Copy link

Copilot AI Aug 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment should start with a capital letter: 'Added the platform flag...' instead of 'added the platform flag...'

Suggested change
# added the platform flag to override any local settings since this image is only compatible with linux/amd64.
# Added the platform flag to override any local settings since this image is only compatible with linux/amd64.

Copilot uses AI. Check for mistakes.
platform: linux/amd64
build:
context: .
args:
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,10 @@ dist
# Logs
*.log
**/logs/log*.txt
**/logs/*.log.*

# macOS dev cleanliness
*.DS_Store
.DS_Store

# Ignores specific to this repository
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ repos:
template/.copier-answers.yml.jinja-base|
template/template/.copier-answers.yml.jinja|
template/.copier-answers.yml.jinja|
.*generated/graphql.ts|
.devcontainer/devcontainer-lock.json|
.copier-answers.yml|
.*\.xml|
Expand Down
Loading