()
| 1 | type FeatureType = "debug" | "account" | "payment" | "quota" | "collect"; |
| 2 | |
| 3 | export const hasDatabase = () => { |
| 4 | return process.env.NEXT_PUBLIC_USE_DATABASE == "true"; |
| 5 | }; |
| 6 | |
| 7 | const matrix: { [key: string]: { [feature: string]: boolean } } = { |
| 8 | development: { |
no outgoing calls
no test coverage detected