4 Commits
Author SHA1 Message Date
sugoidogo 6590dcdac7 add tba to exports
/ build (push) Successful in 1m23s
2025-12-17 02:16:38 -08:00
sugoidogo ace36340a8 add setProxyOrigin to tba 2025-12-17 02:16:31 -08:00
sugoidogo 4918696c5a add TwitchAuth to exports 2025-12-17 02:11:18 -08:00
sugoidogo 4bf079571b update readme 2025-12-17 00:34:31 -08:00
3 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ This is a server-side component providing cloud storage and [OAuth Code Grant Fl
### Cloudflare Workers
[![Deploy to Cloudflare](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https%3A%2F%2Fgithub.com%2Fsugoidogo%2Ftwitch-cloud-ebs)
Previously, there was a "deploy to cloudflare" button here, but it seems to only work with GitHub repos, so you'll have to clone and deploy this yourself.
### Docker
+3 -1
View File
@@ -1,2 +1,4 @@
export { default as SugoiAuthProvider } from "./SugoiAuthProvider"
export { default as WebStorage } from "./WebStorage"
export { default as WebStorage } from "./WebStorage"
export * as TwitchAuth from "./TwitchAuth"
export * as tba from "./tba"
+2
View File
@@ -69,4 +69,6 @@ export async function get_tokens(client_id: string,scope='',redirect_uri=locatio
return token
}
export function setProxyOrigin(proxy_origin:string) { TwitchAuth.setProxyOrigin(proxy_origin) }
export default get_tokens