Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
}
2 changes: 2 additions & 0 deletions apps/dokploy/.env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
DATABASE_URL="postgres://dokploy:amukds4wi9001583845717ad2@localhost:5432/dokploy"
PORT=3000
NODE_ENV=development
# TRAEFIK_PORT=7080
# TRAEFIK_SWARM_MODE=true # Deploy Traefik as a Swarm service instead of a standalone container. Required on macOS with Docker Desktop gvisor networking.
3 changes: 3 additions & 0 deletions apps/dokploy/__test__/cluster/upload.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ describe("getRegistryTag", () => {
imagePrefix: null,
createdAt: new Date().toISOString(),
organizationId: "test-org-id",
awsAccessKeyId: null,
awsSecretAccessKey: null,
awsRegion: null,
...overrides,
};
};
Expand Down
Loading