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
1 change: 1 addition & 0 deletions agb.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
<script type="module" src="/src/web/pages/Nutzungsbedingungen.tsx"></script>
</body>
</html>

4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
# API Routes für Dashboard
from src.api.dashboard.routes import set_bot_instance, router as dashboard_router

# ============================================================================
# =============================================================================
# SETUP
# ============================================================================
# =============================================================================
BASEDIR = Path(__file__).resolve().parent
load_dotenv(dotenv_path=BASEDIR / 'config' / '.env')
colorama_init(autoreset=True)
Expand Down
37 changes: 26 additions & 11 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,44 @@
"dependencies"
],
"prHourlyLimit": 1,
"prConcurrentLimit": 3,
"prConcurrentLimit": 2,
"dependencyDashboard": true,
"dependencyDashboardTitle": "ManagerX – Dependency Updates",
"automerge": false,
"rangeStrategy": "pin",
"timezone": "Europe/Berlin",
"pip_requirements": {
"fileMatch": ["^requirements/.*\\.txt$"]
"fileMatch": [
"(^|/)requirements\\.txt$",
"^requirements/.*\\.txt$"
]
},
"packageRules": [
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "All Patch & Minor Python Updates"
"matchManagers": [
"npm"
],
"fileMatch": [
"package.json",
"package-lock.json"
],
"groupName": "Node.js Updates",
"description": "Alles für Node.js in einen PR"
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["major"],
"groupName": "All Major Python Updates"
"matchManagers": [
"pip_requirements",
"pipenv",
"poetry"
],
"groupName": "Python Updates",
"description": "Alles für Python (Root & Folder) in einen PR"
},
{
"matchManagers": ["github-actions"],
"groupName": "All GitHub Actions Updates"
"matchManagers": [
"github-actions"
],
"groupName": "GitHub Actions Updates"
}
]
}
}