File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ import chalk from 'chalk';
33import { Elysia } from 'elysia' ;
44import { setupApp } from '@/app.module' ;
55
6- console . info ( chalk . gray ( 'Starting Bedstack ' ) ) ;
6+ console . info ( chalk . gray ( 'Starting Conduit ' ) ) ;
77
88new 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 } ) ;
You can’t perform that action at this time.
0 commit comments