Skip to content

Commit

Permalink
chore: rotate keys
Browse files Browse the repository at this point in the history
  • Loading branch information
JuroUhlar committed Oct 17, 2023
1 parent 0ccf3aa commit 7debe00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ type AgentRegion = LoadOptions['region'];

// Warning: In the real world The Server API key should be secretly stored in the environment variables/secrets.
// We are keeping it here just to make it easy to run the demo.
export const SERVER_API_KEY = process.env.PRIVATE_API_KEY ?? 'F6gQ8H8vQLc7mVsVKaFx';
export const PUBLIC_API_KEY = process.env.NEXT_PUBLIC_API_KEY ?? 'rzpSduhT63F6jaS35HFo';
export const SERVER_API_KEY = process.env.PRIVATE_API_KEY ?? 'fMUtVoWHKddpfOheQww2';
export const PUBLIC_API_KEY = process.env.NEXT_PUBLIC_API_KEY ?? 'lwIgYR2dpSJfW830B24h';
export const FRONTEND_REGION: AgentRegion = (process.env.NEXT_PUBLIC_FRONTEND_REGION as AgentRegion) ?? 'us';
export const BACKEND_REGION: Region = BackendRegionMap[process.env.BACKEND_REGION] ?? Region.Global;
export const SCRIPT_URL_PATTERN =
Expand Down

0 comments on commit 7debe00

Please sign in to comment.