mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
- Extend domain configuration to support custom certificate resolvers - Add new "custom" certificate type option in domain forms - Update database schema and validation to include custom certificate resolver - Implement custom certificate resolver handling in Traefik and Docker domain configurations - Enhance domain management with more flexible SSL/TLS certificate options
15 lines
254 B
TypeScript
15 lines
254 B
TypeScript
import { pgEnum } from "drizzle-orm/pg-core";
|
|
|
|
export const applicationStatus = pgEnum("applicationStatus", [
|
|
"idle",
|
|
"running",
|
|
"done",
|
|
"error",
|
|
]);
|
|
|
|
export const certificateType = pgEnum("certificateType", [
|
|
"letsencrypt",
|
|
"none",
|
|
"custom",
|
|
]);
|