Skip to content

Commit 437911e

Browse files
authored
Switch to uv (#18)
* Implement initial Pylon custom app support * Fix null var * Separate the bigquery function * PylonAPI Wrapper implementation for some automations * Switch to uv from poetry * Update deploy script
1 parent b43b8dd commit 437911e

File tree

5 files changed

+980
-1618
lines changed

5 files changed

+980
-1618
lines changed

glu/__main__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from cachetools import LRUCache
77
from gidgethub import aiohttp as gh_aiohttp, routing, sansio
88
from gidgethub.apps import get_installation_access_token, get_jwt
9-
from glu import pylon, zendesk
9+
from glu import pylon # , zendesk
1010
import glu.events as event
1111
from glu.config_loader import config
1212
from glu import runtime_constants
@@ -65,7 +65,7 @@ async def main():
6565
# await zendesk.init()
6666
app = web.Application()
6767
app.router.add_post("/", github_payloads)
68-
app.router.add_post("/zendesk", zendesk.webhook_handler)
68+
# app.router.add_post("/zendesk", zendesk.webhook_handler)
6969
app.router.add_post("/pylon", pylon.webhook)
7070
app.router.add_get("/pylon/sidebar", pylon.sidebar)
7171
port = int(config["server"].get("port", 8000))

0 commit comments

Comments
 (0)