Skip to content

Commit f58516e

Browse files
committed
refactor: update project description and console messages to reflect Conduit branding
1 parent 046c65a commit f58516e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "@bedstack/elysia-drizzle-realworld-example",
3-
"title": "Conduit (built with Bedstack)",
3+
"description": "Backend for Conduit - Medium.com clone, built with Elysia + Drizzle",
44
"version": "0.0.0",
5-
"description": "RealWorld example app for Bun + ElysiaJS + Drizzle, the stack you don't want to sleep on",
65
"module": "src/main.ts",
76
"type": "module",
87
"scripts": {

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import chalk from 'chalk';
33
import { Elysia } from 'elysia';
44
import { setupApp } from '@/app.module';
55

6-
console.info(chalk.gray('Starting Bedstack'));
6+
console.info(chalk.gray('Starting Conduit'));
77

88
new Elysia()
99
.use(setupApp)
1010
.get('/', ({ redirect }) => redirect('/swagger'))
1111
.listen(env.PORT, ({ hostname, port }) => {
1212
console.info(
13-
`Bedstack is up and running on ${chalk.blue(`http://${hostname}:${port}`)}`,
13+
`Conduit is up and running on ${chalk.blue(`http://${hostname}:${port}`)}`,
1414
);
1515
});

0 commit comments

Comments
 (0)