@martel/calyx 1.2.3 → 1.2.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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.2.4](https://github.com/bmartel/calyx/compare/v1.2.3...v1.2.4) (2026-07-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * make scaffolded project port dynamically read process.env.PORT ([3fbf8a6](https://github.com/bmartel/calyx/commit/3fbf8a6cb4a6be7a0bf8056bbe5fc391d9f77e97))
7
+
1
8
  ## [1.2.3](https://github.com/bmartel/calyx/compare/v1.2.2...v1.2.3) (2026-07-01)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@martel/calyx",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "High-performance Bun-native NestJS-compatible framework",
5
5
  "main": "src/index.ts",
6
6
  "bin": {
package/src/cli/index.ts CHANGED
@@ -247,8 +247,9 @@ import { AppModule } from './app.module';
247
247
 
248
248
  async function bootstrap() {
249
249
  const app = await CalyxFactory.create(AppModule);
250
- await app.listen(3000);
251
- console.log('Application is running on http://localhost:3000');
250
+ const port = process.env.PORT || 3000;
251
+ await app.listen(port);
252
+ console.log(\`Application is running on http://localhost:\${port}\`);
252
253
  }
253
254
  bootstrap();
254
255
  `;