Migrate env variables to Cloudron

This commit is contained in:
adilallo
2026-05-22 15:50:33 -06:00
parent c663e051da
commit 8137593aa0
16 changed files with 165 additions and 42 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ beforeEach(() => {
});
describe("GET /api/health", () => {
it("returns not_configured when DATABASE_URL is unset", async () => {
it("returns not_configured when database is not configured", async () => {
isDatabaseConfiguredMock.mockReturnValue(false);
const res = await GET(
new NextRequest("https://x.test/api/health"),