Skip to content

Commit 71224cd

Browse files
feature/template maint 20250212 (#164)
### Added - add reflex specific files to gitignores ### Changes - update versions --------- Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Co-authored-by: RKI | Metadata Exchange <121876825+RKIMetadataExchange@users.noreply.github.com>
1 parent 5446dae commit 71224cd

File tree

7 files changed

+20
-4
lines changed

7 files changed

+20
-4
lines changed

.github/workflows/renovatebot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fetch-depth: 1
2323

2424
- name: Run renovatebot
25-
uses: renovatebot/github-action@v41.0.11
25+
uses: renovatebot/github-action@v41.0.13
2626
env:
2727
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.GPG_SIGNING_KEY }}
2828
RENOVATE_REPOSITORIES: "robert-koch-institut/mex-template"

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,11 @@ dmypy.json
121121
# SQLite databases
122122
*.db
123123

124+
# Reflex
125+
.states
126+
assets/external/
127+
.web
128+
124129
# Default exports
125130
*.ndjson
126131
data/

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- configure ruff formatting and pre-commit hook
1313
- added RKI postal address to README files
14+
- added reflex specific files to gitignores
1415

1516
### Changes
1617

mex-{{ cookiecutter.project_name }}/.dockerignore

+5
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,11 @@ dmypy.json
117117
# SQLite databases
118118
*.db
119119

120+
# Reflex
121+
.states
122+
assets/external/
123+
.web
124+
120125
# Default exports
121126
*.ndjson
122127
data/

mex-{{ cookiecutter.project_name }}/.github/workflows/renovatebot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fetch-depth: 1
2323

2424
- name: Run renovatebot
25-
uses: renovatebot/github-action@v41.0.11
25+
uses: renovatebot/github-action@v41.0.13
2626
env:
2727
RENOVATE_GIT_PRIVATE_KEY: {% raw %}${{ secrets.GPG_SIGNING_KEY }}{% endraw %}
2828
RENOVATE_REPOSITORIES: "robert-koch-institut/mex-{{ cookiecutter.project_name }}"

mex-{{ cookiecutter.project_name }}/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,11 @@ dmypy.json
121121
# SQLite databases
122122
*.db
123123

124+
# Reflex
125+
.states
126+
assets/external/
127+
.web
128+
124129
# Default exports
125130
*.ndjson
126131
data/

mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ default_language_version:
33
python: python3.11
44
repos:
55
- repo: https://github.com/astral-sh/ruff-pre-commit
6-
rev: v0.9.1
6+
rev: v0.9.6
77
hooks:
88
- id: ruff
99
args: [--fix, --exit-non-zero-on-fix]
@@ -25,7 +25,7 @@ repos:
2525
- id: fix-byte-order-marker
2626
name: byte-order
2727
- repo: https://github.com/pdm-project/pdm
28-
rev: 2.22.2
28+
rev: 2.22.3
2929
hooks:
3030
- id: pdm-lock-check
3131
name: pdm

0 commit comments

Comments
 (0)