-
Notifications
You must be signed in to change notification settings - Fork 0
Merge template #13
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge template #13
Changes from all commits
a47e05e
97a4126
a188904
87e82c5
b035ac1
99c30a6
e1cc1db
31f9a55
bfaa0d4
c320944
f32dbd2
45b6e1b
7cd0a41
749584a
3b26eaf
b50a587
dfdd384
db3be5b
86f01df
57a4343
fc80ccd
548feaa
ca1771f
de51dd9
5104123
346c934
d701e1e
98f0d9f
14308e7
a1df75c
c17cc66
452c572
362adef
33aa04c
dc3d146
3535efd
7e5fbb2
7afb63a
431c6e9
f49eaf1
d8e94cd
19f131c
fa5b563
db30548
ca182a0
1a630bf
64acec6
7771337
76b5d2d
f64a8bb
9f370f6
c3b82b0
9d816ec
c00fa41
49fa2d0
5c17a4b
9495ee2
e91f7c7
f6c383b
01854e0
6161dbc
c5c184d
e80292d
6b12493
21c82ff
d65c9c9
7933bc9
397e361
f3cd0d8
a6d8ba7
3659310
768d258
e8c14e7
f459e66
e7ff3db
2b2661f
c13685d
75f027a
a181b73
1c67d5f
85fc9c3
c03f4e6
7189314
75fa783
f94ecff
d8bc532
e3857b8
15e5a13
7183499
2b6cb9a
7fa851f
df9aab5
160ad96
a2070ea
b4209d7
63ad905
5af2fd7
ed8abcd
e3f2fd1
84c6e29
c78b10e
c3a0b2b
09ce809
58de157
66f1943
5c9c8fa
125871d
1f76990
94bc3a7
a509a08
edb7fcc
a6c7e29
4e67b8c
2b0ef60
887157c
cc582b4
1d07663
8b4f8b0
d3a80d6
8c743c8
3e21099
1619a14
aa98c1c
9dc5e33
2a1a7e5
3e0c71f
3206617
5c8bd14
15a680b
5fb4b22
2d8323c
30feb90
c04a45a
cf5cd82
d722bb8
cbe9ed9
edbdb16
b12a3b2
9a2d063
7a9daa7
1e788c5
a2441d2
51a01fd
81d599e
0c5fdbb
78c4178
d5756dc
92a6979
6a7766a
f5be3ef
692c6db
b2786f9
3352c27
c1c8b9e
175e027
65c152b
f8a9cb4
8a11b6d
393b685
090518d
b2a8fe9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: "pip" | ||
| directory: "/" # Location of your pyproject.toml or requirements.txt | ||
| schedule: | ||
| interval: "weekly" # Checks for updates every week | ||
| commit-message: | ||
| prefix: "deps" # Prefix for pull request titles | ||
| open-pull-requests-limit: 5 # Limit the number of open PRs at a time |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| [general] | ||
| email = "" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| version: '3.8' | ||
|
|
||
| services: | ||
| openms-streamlit-template: | ||
| build: | ||
| context: . | ||
| dockerfile: Dockerfile | ||
| args: | ||
| GITHUB_TOKEN: $GITHUB_TOKEN | ||
| image: openms_streamlit_template | ||
|
Comment on lines
+8
to
+10
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent ❓ Verification inconclusiveBuild-arg placeholder won’t be expanded – use Compose only substitutes environment variables when they are written as - args:
- GITHUB_TOKEN: $GITHUB_TOKEN
+ args:
+ GITHUB_TOKEN: ${GITHUB_TOKEN}(If the variable is optional, use Use Docker Compose only substitutes variables written as Apply this change: build:
context: .
dockerfile: Dockerfile
args:
- GITHUB_TOKEN: $GITHUB_TOKEN
+ GITHUB_TOKEN: ${GITHUB_TOKEN}If the token may be undefined, you can provide an empty default: GITHUB_TOKEN: "${GITHUB_TOKEN:-}"🤖 Prompt for AI Agents |
||
| container_name: openms-streamlit-template | ||
| restart: always | ||
| ports: | ||
| - 8501:8501 | ||
| volumes: | ||
| - workspaces-streamlit-template:/workspaces-streamlit-template | ||
| command: streamlit run openms-streamlit-template/app.py | ||
| volumes: | ||
| workspaces-streamlit-template: | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix static WiX
Productversion attribute.The
<Product>element’sVersion="1.0.0.0"is hardcoded and will diverge fromAPP_NAME. This can lead to upgrade/patch mismatches. You should inject the actual release version (e.g. from${{ github.event.release.tag_name }}) into theVersionattribute so the installer version tracks the app version.🤖 Prompt for AI Agents