mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 00:41:26 +02:00
Eventbrite shut down their public Event Search API (/v3/events/search) in 2023. The provider now uses the website extractor pipeline (mana-research + LLM) to scrape Eventbrite's public search pages. No API key needed — same pipeline as any website source. Also adds mana-events to generate-env.mjs for automatic .env generation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
50 lines
1.5 KiB
TypeScript
50 lines
1.5 KiB
TypeScript
/**
|
|
* Application configuration loaded from environment variables.
|
|
*/
|
|
|
|
export interface Config {
|
|
port: number;
|
|
databaseUrl: string;
|
|
manaAuthUrl: string;
|
|
cors: {
|
|
origins: string[];
|
|
};
|
|
rateLimit: {
|
|
// Max public RSVP submissions per token per hour
|
|
rsvpPerTokenPerHour: number;
|
|
// Hard cap on total RSVPs per token
|
|
rsvpMaxPerToken: number;
|
|
};
|
|
// External service URLs for event discovery
|
|
manaResearchUrl: string;
|
|
manaLlmUrl: string;
|
|
// Platform API key (optional — provider gracefully skips when unconfigured)
|
|
meetupApiKey: string | null;
|
|
}
|
|
|
|
export function loadConfig(): Config {
|
|
const requiredEnv = (key: string, fallback?: string): string => {
|
|
const value = process.env[key] || fallback;
|
|
if (!value) throw new Error(`Missing required env var: ${key}`);
|
|
return value;
|
|
};
|
|
|
|
return {
|
|
port: parseInt(process.env.PORT || '3065', 10),
|
|
databaseUrl: requiredEnv(
|
|
'DATABASE_URL',
|
|
'postgresql://mana:devpassword@localhost:5432/mana_platform'
|
|
),
|
|
manaAuthUrl: requiredEnv('MANA_AUTH_URL', 'http://localhost:3001'),
|
|
cors: {
|
|
origins: (process.env.CORS_ORIGINS || 'http://localhost:5173').split(','),
|
|
},
|
|
rateLimit: {
|
|
rsvpPerTokenPerHour: parseInt(process.env.RSVP_RATE_LIMIT || '60', 10),
|
|
rsvpMaxPerToken: parseInt(process.env.RSVP_MAX_PER_TOKEN || '500', 10),
|
|
},
|
|
manaResearchUrl: process.env.MANA_RESEARCH_URL || 'http://localhost:3068',
|
|
manaLlmUrl: process.env.MANA_LLM_URL || 'http://localhost:3025',
|
|
meetupApiKey: process.env.MEETUP_API_KEY || null,
|
|
};
|
|
}
|