-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreliverse.config.ts
53 lines (38 loc) · 1.66 KB
/
reliverse.config.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
export const appMainName = "Acme Store" as const;
export const authProvider = "clerk" as "authjs" | "clerk" | "none";
export const debugEnabled = false;
export const engineVersion = "0.4.0" as const;
export const frameworkVersion = "1.2.6" as const;
export const hideEnvInfo = false;
export const hideTanstackDevtools = true;
export const hideTailwindIndicator = false;
export const disableDonateButton = false;
export const intlProvider = "next-intl" as "disable" | "next-intl";
// Relivator 1.3.0 will use 'bun' as the default package manager
export const packageManager = "pnpm" as "bun" | "pnpm";
// @see https://github.com/blefnk/relivator-nextjs-template/issues/32
export type DatabaseDialect = "mysql" | "postgresql" | "sqlite";
export const databasePrefix =
process.env.NEXT_PUBLIC_DATABASE_PREFIX || "relivator";
export const databaseDialect = "postgresql";
// ### Type definitions for database provider
// - neon | postgres | https://neon.tech
// - planetscale | mysql | https://planetscale.com/pricing
// - private-mysql | postgres | https://dev.mysql.com/downloads
// - private-pg | postgres | https://postgresql.org
// - railway-mysql | mysql | https://railway.app
// - railway-pg | postgres | https://railway.app
// - turso | sqlite | https://turso.tech
// - vercel | postgres | https://vercel.com/storage/postgres
export type DatabaseProvider =
| "neon"
| "planetscale"
| "private-mysql"
| "private-pg"
| "private-sqlite"
| "railway-mysql"
| "railway-pg"
| "turso"
| "vercel";
// Configurations for database provider and dialect
export const databaseProvider = "neon" as DatabaseProvider;