Add CC licensing info, favicon, general cleanup

This commit is contained in:
2022-04-05 11:56:06 -05:00
parent 3142d0a4be
commit e461635f3a
22 changed files with 31 additions and 102 deletions

View File

@@ -1,4 +1,4 @@
import { env } from "@extollo/lib";
import { env } from '@extollo/lib'
export default {
connections: {

View File

@@ -1,4 +1,4 @@
import {OAuth2Client, OAuth2Scope, env, /*uuid4*/} from '@extollo/lib'
import {OAuth2Client, OAuth2Scope, env} from '@extollo/lib'
export default {
secret: env('OAUTH2_SECRET'),
@@ -9,16 +9,5 @@ export default {
description: 'access basic information about your account',
},
} as {[key: string]: OAuth2Scope},
clients: {
// 'test-1': {
// id: 'test-1',
// display: 'Test 1',
// secret: env('TEST_CLIENT_SECRET', uuid4()),
// allowedFlows: ['code'],
// allowedScopeIds: ['user-info'],
// allowedRedirectUris: [
// 'http://localhost:1234/callback',
// ],
// },
} as {[key: string]: OAuth2Client},
clients: {} as {[key: string]: OAuth2Client},
}

View File

@@ -7,7 +7,7 @@ import {
RedisCache,
CacheQueue,
BusConnectorConfig, QueueConfig, SyncQueue
} from "@extollo/lib"
} from '@extollo/lib'
export default {
debug: env('DEBUG_MODE', false),