-
Notifications
You must be signed in to change notification settings - Fork 0
/
appconfig.ts
30 lines (29 loc) · 864 Bytes
/
appconfig.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const appconfig = {
siteName: "Eric's Coins",
siteDescription: "Eric's Coins Site.",
numberOfCoinsOnHomepage: 10,
links: {
github: "https://github.com/ericbrian/coinorganizer",
mastadon: "https://mstdn.social/@EricBrian",
bluesky: "https://bsky.app/profile/ericbrian.bsky.social",
},
cdn: "https://coin-organizer.b-cdn.net",
envs: {
development: {
clientBaseUrl: "http://localhost:3000",
},
test: {
clientBaseUrl: "http://localhost:3000",
},
production: {
clientBaseUrl: "http://localhost:3000",
}
},
algolia: {
appId: `${process.env.NEXT_PUBLIC_ALGOLIA_APP_ID}`,
apiKey: `${process.env.NEXT_PUBLIC_ALGOLIA_API_KEY}`,
writeApiKey: `${process.env.NEXT_PUBLIC_ALGOLIA_WRITE_API_KEY}`,
indexName: `${process.env.NEXT_PUBLIC_ALGOLIA_INDEX_NAME}`
}
};
export default appconfig;