mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 11:29:12 +00:00
* feat: add discord interactions worker * feat(interactions): update CI/CD and terraform to add interactions * chore: fix lint issues * chore: fix build & emulation * fix(interactions): deployment + handler * chore: remove worker-dist via gitignore * feat: add /pickable-roles and /pick-role basis * feat: add pick, remove, and update the general /roleypoly command * fix: lint missing Member import
11 lines
446 B
TypeScript
11 lines
446 B
TypeScript
const self = global as any as Record<string, string>;
|
|
|
|
const env = (key: string) => self[key] ?? '';
|
|
|
|
const safeURI = (x: string) => x.replace(/\/$/, '');
|
|
const list = (x: string) => x.split(',');
|
|
|
|
export const uiPublicURI = safeURI(env('UI_PUBLIC_URI'));
|
|
export const apiPublicURI = safeURI(env('API_PUBLIC_URI'));
|
|
export const publicKey = safeURI(env('DISCORD_PUBLIC_KEY'));
|
|
export const interactionsSharedKey = env('INTERACTIONS_SHARED_KEY');
|