feat(create-turbo): create kitchen-sink
This commit is contained in:
commit
4625c93980
80 changed files with 11572 additions and 0 deletions
9
apps/api/src/index.ts
Normal file
9
apps/api/src/index.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { log } from "@repo/logger";
|
||||
import { createServer } from "./server";
|
||||
|
||||
const port = process.env.PORT || 5001;
|
||||
const server = createServer();
|
||||
|
||||
server.listen(port, () => {
|
||||
log(`api running on ${port}`);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue