baasix 0.1.1 → 0.1.3
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/dist/index.mjs +1 -2
- package/package.json +2 -2
- package/src/commands/init.ts +1 -2
package/dist/index.mjs
CHANGED
|
@@ -402,7 +402,7 @@ function generateEnvContent(config, secretKey) {
|
|
|
402
402
|
lines.push("PORT=8056");
|
|
403
403
|
lines.push("HOST=localhost");
|
|
404
404
|
lines.push("NODE_ENV=development");
|
|
405
|
-
lines.push("
|
|
405
|
+
lines.push("LOG_LEVEL=info");
|
|
406
406
|
lines.push("");
|
|
407
407
|
lines.push("#-----------------------------------");
|
|
408
408
|
lines.push("# Database");
|
|
@@ -410,7 +410,6 @@ function generateEnvContent(config, secretKey) {
|
|
|
410
410
|
lines.push(`DATABASE_URL="${config.databaseUrl}"`);
|
|
411
411
|
lines.push("DATABASE_LOGGING=false");
|
|
412
412
|
lines.push("DATABASE_POOL_MAX=20");
|
|
413
|
-
lines.push("DATABASE_POOL_MIN=0");
|
|
414
413
|
lines.push("");
|
|
415
414
|
lines.push("#-----------------------------------");
|
|
416
415
|
lines.push("# Security");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "baasix",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI for Baasix Backend-as-a-Service",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"url": "git+https://github.com/tspvivek/baasix.git",
|
|
11
11
|
"directory": "cli"
|
|
12
12
|
},
|
|
13
|
-
"homepage": "https://baasix.com/docs/cli",
|
|
13
|
+
"homepage": "https://baasix.com/docs/cli-guide",
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsup",
|
|
16
16
|
"start": "node ./dist/index.mjs",
|
package/src/commands/init.ts
CHANGED
|
@@ -477,7 +477,7 @@ function generateEnvContent(config: ProjectConfig, secretKey: string): string {
|
|
|
477
477
|
lines.push("PORT=8056");
|
|
478
478
|
lines.push("HOST=localhost");
|
|
479
479
|
lines.push("NODE_ENV=development");
|
|
480
|
-
lines.push("
|
|
480
|
+
lines.push("LOG_LEVEL=info");
|
|
481
481
|
lines.push("");
|
|
482
482
|
|
|
483
483
|
// Database section
|
|
@@ -487,7 +487,6 @@ function generateEnvContent(config: ProjectConfig, secretKey: string): string {
|
|
|
487
487
|
lines.push(`DATABASE_URL="${config.databaseUrl}"`);
|
|
488
488
|
lines.push("DATABASE_LOGGING=false");
|
|
489
489
|
lines.push("DATABASE_POOL_MAX=20");
|
|
490
|
-
lines.push("DATABASE_POOL_MIN=0");
|
|
491
490
|
lines.push("");
|
|
492
491
|
|
|
493
492
|
// Security section
|