create-better-t-stack 3.12.2 → 3.12.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "3.12.2",
3
+ "version": "3.12.4",
4
4
  "description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
5
5
  "keywords": [
6
6
  "better-auth",
@@ -67,7 +67,7 @@
67
67
  "prepublishOnly": "npm run build"
68
68
  },
69
69
  "dependencies": {
70
- "@better-t-stack/types": "^3.12.2",
70
+ "@better-t-stack/types": "^3.12.4",
71
71
  "@clack/prompts": "^1.0.0-alpha.8",
72
72
  "@orpc/server": "^1.13.0",
73
73
  "consola": "^3.4.2",
@@ -116,7 +116,6 @@ app.get("/", (_req, res) => {
116
116
  res.status(200).send("OK");
117
117
  });
118
118
 
119
- const port = env.PORT;
120
- app.listen(port, () => {
121
- console.log(`Server is running on port ${port}`);
119
+ app.listen(3000, () => {
120
+ console.log("Server is running on http://localhost:3000");
122
121
  });
@@ -4,6 +4,7 @@
4
4
  // Types are defined in env.d.ts based on your alchemy.run.ts bindings
5
5
  export { env } from "cloudflare:workers";
6
6
  {{else}}
7
+ import "dotenv/config";
7
8
  import { createEnv } from "@t3-oss/env-core";
8
9
  import { z } from "zod";
9
10