fix(enterprise): update LICENSE_KEY_URL for production environment

- Changed the LICENSE_KEY_URL from "https://api-license-key.dokploy.com" to "https://licenses.dokploy.com" to reflect the correct production endpoint.
This commit is contained in:
Mauricio Siu
2026-02-05 02:18:24 -06:00
parent dfcb422294
commit ca2efc5c68

View File

@@ -7,7 +7,7 @@ import { user as userSchema } from "../../db/schema/user";
export const LICENSE_KEY_URL =
process.env.NODE_ENV === "development"
? "http://localhost:4002"
: "https://api-license-key.dokploy.com";
: "https://licenses.dokploy.com";
export const initEnterpriseBackupCronJobs = async () => {
scheduleJob("enterprise-check", "0 0 */3 * *", async () => {