Skip to content

Commit 0f6f054

Browse files
committed
.
1 parent 76c1267 commit 0f6f054

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

dist/index.js

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/coolify.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,11 @@ export default class Coolify {
441441
'utf-8'
442442
)
443443
//Create backend service
444+
console.log(`Creating service ${supabaseComponentName}`)
445+
console.log(`Project UUID: ${this.project_uuid}`)
446+
console.log(`Server UUID: ${this.server_uuid}`)
447+
console.log(`Environment UUID: ${this.environment_uuid}`)
448+
console.log(`Environment name: ${this.environment_name}`)
444449
const backendService = await createService({
445450
client: this.client,
446451
body: {
@@ -466,6 +471,11 @@ export default class Coolify {
466471
}
467472
backendServiceUUID = backendService.data.uuid
468473

474+
console.log(`Updating service ${supabaseComponentName}`)
475+
console.log(`Project UUID: ${this.project_uuid}`)
476+
console.log(`Server UUID: ${this.server_uuid}`)
477+
console.log(`Environment UUID: ${this.environment_uuid}`)
478+
console.log(`Environment name: ${this.environment_name}`)
469479
const ret = await updateServiceByUuid({
470480
client: this.client,
471481
path: {

0 commit comments

Comments
 (0)