base44 0.0.3 → 0.0.5
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/README.md +15 -1
- package/dist/cli/index.js +20592 -1621
- package/dist/cli/templates/backend-and-client/.nvmrc +1 -0
- package/dist/cli/templates/backend-and-client/base44/config.jsonc.ejs +2 -2
- package/dist/cli/templates/{backend-only/base44/.env.local.ejs → backend-and-client/base44/env.local.ejs} +3 -0
- package/dist/cli/templates/backend-only/base44/env.local.ejs +9 -0
- package/dist/cli/templates/templates.json +4 -4
- package/package.json +5 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
22.21.1
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
// Site/hosting configuration for the client application
|
|
10
10
|
// Docs: https://docs.base44.com/configuration/hosting
|
|
11
11
|
"site": {
|
|
12
|
+
"installCommand": "npm install",
|
|
12
13
|
"buildCommand": "npm run build",
|
|
13
14
|
"serveCommand": "npm run dev",
|
|
14
|
-
"outputDirectory": "./dist"
|
|
15
|
-
"installCommand": "npm ci"
|
|
15
|
+
"outputDirectory": "./dist"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
outputFileName: .env.local
|
|
3
|
+
---
|
|
4
|
+
# Base44 Project Environment Variables
|
|
5
|
+
# This file contains environment-specific configuration for your Base44 project.
|
|
6
|
+
# Do not commit this file to version control if it contains sensitive data.
|
|
7
|
+
|
|
8
|
+
# Your Base44 Application ID
|
|
9
|
+
BASE44_CLIENT_ID=<%= projectId %>
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
"templates": [
|
|
3
3
|
{
|
|
4
4
|
"id": "backend-only",
|
|
5
|
-
"name": "
|
|
6
|
-
"description": "
|
|
5
|
+
"name": "Init a basic project",
|
|
6
|
+
"description": "Minimal Base44 backend setup for creating entities",
|
|
7
7
|
"path": "backend-only"
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
10
|
"id": "backend-and-client",
|
|
11
|
-
"name": "
|
|
12
|
-
"description": "Full-stack
|
|
11
|
+
"name": "Bootstrap from an example",
|
|
12
|
+
"description": "Full-stack example with Base44 backend and a Vite + React client application",
|
|
13
13
|
"path": "backend-and-client"
|
|
14
14
|
}
|
|
15
15
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "base44",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Base44 CLI - Unified interface for managing Base44 applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli/index.js",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"@types/ejs": "^3.1.5",
|
|
39
39
|
"@types/lodash.kebabcase": "^4.1.9",
|
|
40
40
|
"@types/node": "^22.10.5",
|
|
41
|
+
"@types/tar": "^6.1.13",
|
|
41
42
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
42
43
|
"@typescript-eslint/parser": "^8.51.0",
|
|
43
44
|
"chalk": "^5.6.2",
|
|
@@ -47,11 +48,14 @@
|
|
|
47
48
|
"eslint": "^9.39.2",
|
|
48
49
|
"eslint-plugin-import": "^2.32.0",
|
|
49
50
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
51
|
+
"execa": "^9.6.1",
|
|
52
|
+
"front-matter": "^4.0.2",
|
|
50
53
|
"globby": "^16.1.0",
|
|
51
54
|
"json5": "^2.2.3",
|
|
52
55
|
"ky": "^1.14.2",
|
|
53
56
|
"lodash.kebabcase": "^4.1.1",
|
|
54
57
|
"p-wait-for": "^6.0.0",
|
|
58
|
+
"tar": "^7.4.3",
|
|
55
59
|
"tsdown": "^0.12.4",
|
|
56
60
|
"tsx": "^4.19.2",
|
|
57
61
|
"typescript": "^5.7.2",
|