Shehriyar
Shehriyar
Explore posts from servers
RRunPod
Created by Shehriyar on 3/31/2025 in #⛅|pods
GraphQL secretCreate Mutation
I have a runpod teams account, and want to programatically add secrets to the account (https://docs.runpod.io/sdks/graphql/manage-pod-templates#create-a-secret). I'll then be using these secrets in my Pod. This API works when I use my personal key, however, when I use the team API key, it gives me the following error: Not authorized. Missing required scope(s): TEAM_ADMIN, TEAM_DEV My API key already has all full access, and running the "myself" query shows that I do have the "admin" role in "teamScopes". What exactly am I missing?
20 replies
DDeno
Created by Shehriyar on 2/19/2025 in #help
Clean Integration of a Multi-file Deno Project as a Dependency in another Deno Project
Hey everyone, I’m facing an issue integrating a multi-file Deno project into another Deno project. The challenge is that the files I need to import have their own internal imports, which makes the usual GitHub URL method unfeasible. I’ve already tried using the dnt approach. It works fine when there aren’t many npm packages involved, but once the dependency graph gets heavier, I start running into odd build errors. My goal is to ensure that everything exported from the project's mod.ts (which just aggregates a bunch of export statements) is fully accessible in the consuming project. Has anyone successfully tackled this scenario? What is the cleanest and most reliable method to use a multi-file Deno project as a dependency within another project? Note: I'm using React in the deno sub-projects and my main project has Next.js currently on node, but I'll also be porting this over to deno. Thanks in advance for your help!
2 replies