Skip to content

Commit

Permalink
💄 Improve and add emojis to console.log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
aryanprince committed Sep 19, 2024
1 parent 0778780 commit 9d39d89
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,15 @@ program
dockerComposeContent,
);

console.log("Docker Compose file created successfully!");
console.log("🐳 Docker Compose file created successfully!");

// Generate database connection URL
const connectionUrl = getConnectionUrl(
answers.selectedDatabase,
answers.selectedProjectName,
);

const connectionUrl = getConnectionUrl(answers.dbType, answers.projectName);
console.log("\nConnection URL for your database:");
console.log("\n📋 Copy this connection URL to start using your database:");
console.log(connectionUrl);
});

Expand Down

0 comments on commit 9d39d89

Please sign in to comment.