feat: Additional instance configuration (#260)

This commit is contained in:
Matthew Phillips 2022-11-30 16:17:20 -05:00 committed by GitHub
parent 2bfa9dc476
commit c505543a73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 2 deletions

View file

@ -21,8 +21,8 @@ const kv = _kv as typeof import('unstorage/dist/drivers/cloudflare-kv-http')['de
const storage = useStorage() as Storage
if (config.env === 'local') {
storage.mount('servers', fs({ base: 'node_modules/.cache/servers' }))
if (config.env === 'local' || config.storage.driver === 'fs') {
storage.mount('servers', fs({ base: config.storage.fsBase }))
}
else {
storage.mount('servers', cached(kv({
@ -31,6 +31,7 @@ else {
apiToken: config.cloudflare.apiToken,
})))
}
export function getRedirectURI(server: string) {
return `${HOST_URL}/api/${server}/oauth`
}