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
30 changes: 30 additions & 0 deletions .github/app-manifest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# GitHub App Manifest for CodeFlow Engine
# This manifest defines the GitHub App configuration for automatic setup
# See: https://docs.github.com/en/apps/sharing-github-apps/registering-a-github-app-from-a-manifest
#
# NOTE: Before creating your GitHub App, replace 'your-app.azurewebsites.net'
# with your actual deployment URL in the webhook and callback URLs below.

name: CodeFlow Engine Setup
url: https://github.com/JustAGhosT/codeflow-engine
hook_attributes:
url: https://your-app.azurewebsites.net/api/github-app/webhook
active: true
redirect_url: https://your-app.azurewebsites.net/api/github-app/callback
description: Automated setup for CodeFlow Engine - GitHub Workflow Automation
public: false

default_permissions:
# Repository permissions
actions: write
contents: read
metadata: read
secrets: write
workflows: write

default_events:
- installation
- installation_repositories
- workflow_run
- push
- pull_request
40 changes: 21 additions & 19 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ aioredis = "^2.0.0"
[tool.poetry.group.server.dependencies]
fastapi = "^0.103.0"
uvicorn = {extras = ["standard"], version = "^0.23.0"}
gunicorn = "^21.2.0"
gunicorn = "^22.0.0"

[tool.poetry.group.resilience.dependencies]
pybreaker = "^1.0.0"
Expand Down