Skip to content

Commit

Permalink
Switch to uv (#18)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
axonasif authored Dec 3, 2024
1 parent b43b8dd commit 437911e
Show file tree
Hide file tree
Showing 5 changed files with 980 additions and 1,618 deletions.
4 changes: 2 additions & 2 deletions glu/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from cachetools import LRUCache
from gidgethub import aiohttp as gh_aiohttp, routing, sansio
from gidgethub.apps import get_installation_access_token, get_jwt
from glu import pylon, zendesk
from glu import pylon # , zendesk
import glu.events as event
from glu.config_loader import config
from glu import runtime_constants
Expand Down Expand Up @@ -65,7 +65,7 @@ async def main():
# await zendesk.init()
app = web.Application()
app.router.add_post("/", github_payloads)
app.router.add_post("/zendesk", zendesk.webhook_handler)
# app.router.add_post("/zendesk", zendesk.webhook_handler)
app.router.add_post("/pylon", pylon.webhook)
app.router.add_get("/pylon/sidebar", pylon.sidebar)
port = int(config["server"].get("port", 8000))
Expand Down
Loading

0 comments on commit 437911e

Please sign in to comment.