@base44-preview/cli 0.0.14-pr.92.59cf482 → 0.0.15-pr.100.7c491cf

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 CHANGED
@@ -79,7 +79,6 @@ Base44 projects are configured via a `config.jsonc` (or `config.json`) file in t
79
79
  ```jsonc
80
80
  // base44/config.jsonc
81
81
  {
82
- "id": "your-app-id", // Set after project creation
83
82
  "name": "My Project",
84
83
  "entitiesDir": "./entities", // Default: ./entities
85
84
  "functionsDir": "./functions", // Default: ./functions
@@ -89,17 +88,15 @@ Base44 projects are configured via a `config.jsonc` (or `config.json`) file in t
89
88
  }
90
89
  ```
91
90
 
92
- ### Environment Variables
91
+ ### App Configuration
93
92
 
94
- | Variable | Description | Default |
95
- |----------|-------------|---------|
96
- | `BASE44_CLIENT_ID` | Your app ID | - |
93
+ Your app ID is stored in a `.app.jsonc` file in the `base44/` directory. This file is created automatically when you run `base44 create` or `base44 link`:
97
94
 
98
- You can set these in a `.env.local` file in your `base44/` directory:
99
-
100
- ```bash
101
- # base44/.env.local
102
- BASE44_CLIENT_ID=your-app-id
95
+ ```jsonc
96
+ // base44/.app.jsonc
97
+ {
98
+ "id": "your-app-id"
99
+ }
103
100
  ```
104
101
 
105
102
  ## Project Structure
@@ -110,7 +107,7 @@ A typical Base44 project has this structure:
110
107
  my-project/
111
108
  ├── base44/
112
109
  │ ├── config.jsonc # Project configuration
113
- │ ├── .env.local # Environment variables (git-ignored)
110
+ │ ├── .app.jsonc # App ID (git-ignored)
114
111
  │ ├── entities/ # Entity schema files
115
112
  │ │ ├── user.jsonc
116
113
  │ │ └── product.jsonc