2023-03-05 02:19:57 +00:00
|
|
|
export const LOCAL_DOMAIN = Deno.env.get('LOCAL_DOMAIN') || 'http://localhost:8000';
|
|
|
|
export const POST_CHAR_LIMIT = Number(Deno.env.get('POST_CHAR_LIMIT') || 5000);
|
2023-05-01 04:27:29 +00:00
|
|
|
export const ADMIN_EMAIL = Deno.env.get('ADMIN_EMAIL') || 'webmaster@localhost';
|
2023-03-05 04:10:56 +00:00
|
|
|
|
|
|
|
export const poolRelays = (Deno.env.get('RELAY_POOL') || '').split(',').filter(Boolean);
|
2023-03-05 05:26:25 +00:00
|
|
|
export const publishRelays = ['wss://relay.mostr.pub'];
|