Skip to content
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

Bump cookiecutter template to 5446da #235

Merged
merged 5 commits into from
Feb 10, 2025
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
4 changes: 2 additions & 2 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"checkout": null,
"commit": "57e9b752fed460f5542bda226467210d0135f4fb",
"commit": "5446dae8486bd2412e75f97790c6bd800fa26a34",
"context": {
"cookiecutter": {
"project_name": "drop",
"short_summary": "Data upload and download service for the MEx project.",
"long_summary": "The `mex-drop` package provides an API for uploading data to and downloading data from the MEx project. Request payloads need to be JSON-formatted but can have arbitrary structures. Accepted data will be ingested and processed asynchronously.",
"_template": "https://github.com/robert-koch-institut/mex-template",
"_commit": "57e9b752fed460f5542bda226467210d0135f4fb"
"_commit": "5446dae8486bd2412e75f97790c6bd800fa26a34"
}
},
"directory": null,
Expand Down
14 changes: 7 additions & 7 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# PR Context
### PR Context
<!-- Additional info for the reviewer -->

# Added
### Added
<!-- New features and interfaces -->

# Changes
### Changes
<!-- Changes in existing functionality -->

# Deprecated
### Deprecated
<!-- Soon-to-be removed features -->

# Removed
### Removed
<!-- Definitely removed features -->

# Fixed
### Fixed
<!-- Fixed bugs -->

# Security
### Security
<!-- Fixed vulnerabilities -->
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ENV PYTHONUNBUFFERED=1
ENV PYTHONOPTIMIZE=1

ENV PIP_DISABLE_PIP_VERSION_CHECK=on
ENV PIP_NO_INPUT: on
ENV PIP_NO_INPUT=on
ENV PIP_PREFER_BINARY=on
ENV PIP_PROGRESS_BAR=off

Expand Down Expand Up @@ -45,4 +45,4 @@ USER mex
EXPOSE 8020
EXPOSE 8021

ENTRYPOINT [ "drop", "run" ]
ENTRYPOINT [ "drop" ]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ available to external researchers as well as the interested (professional) publi
find research data from the RKI.

For further details, please consult our
[project page](https://www.rki.de/DE/Content/Forsch/MEx/MEx_node.html).
[project page](https://www.rki.de/DE/Aktuelles/Publikationen/Forschungsdaten/MEx/metadata-exchange-plattform-mex-node.html).

[^1]: FAIR is referencing the so-called
[FAIR data principles](https://www.go-fair.org/fair-principles/) – guidelines to make
Expand Down
8 changes: 7 additions & 1 deletion mex/drop/login/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ def index() -> rx.Component:
return rx.center(
rx.card(
rx.vstack(
app_logo(),
rx.hstack(
app_logo(),
rx.spacer(spacing="4"),
rx.color_mode.button(),
style={"width": "100%"},
),
rx.divider(size="4"),
rx.vstack(
login_x_system(),
Expand All @@ -68,6 +73,7 @@ def index() -> rx.Component:
),
style={
"width": "calc(400px * var(--scaling))",
"padding": "var(--space-4)",
"top": "20vh",
},
variant="classic",
Expand Down
92 changes: 46 additions & 46 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading