You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`--config <path>`|`-c`| - | Path to `objectql.config.ts`. |
105
+
|`--modules <items>`|| - | Comma-separated list of modules to load (overrides config). Supports NPM packages (`@org/pkg`) or local paths (`./src/mod`). |
106
+
|`--no-watch`||`false`| Disable file watching. |
107
+
108
+
### 3.2 `start` (Production Server)
109
+
110
+
good Start the server in production mode.
111
+
112
+
```bash
113
+
npx objectql start [options]
114
+
```
115
+
116
+
**Options:**
117
+
118
+
| Option | Alias | Default | Description |
119
+
| :--- | :--- | :--- | :--- |
120
+
|`--port <number>`|`-p`|`3000`| Port to listen on. |
Copy file name to clipboardExpand all lines: examples/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ Welcome to the ObjectQL examples collection. This directory is organized to help
44
44
| Example | Description | Proficiency |
45
45
| :--- | :--- | :--- |
46
46
|**[Enterprise Structure](./scenarios/enterprise-structure)**|**[NEW]** Best practices for organizing metadata in large-scale applications. Shows domain-driven module structure with 20+ objects across CRM, HR, Finance, and Project modules. | 🏢 Advanced |
47
-
|**[Preset Usage](./scenarios/preset-usage)**| Shows how to consume pre-packaged business logic (presets) in an application. | 💡 Intermediate |
47
+
|**[Module Usage](./scenarios/module-usage)**| Shows how to consume pre-packaged business logic (modules) in an application. | 💡 Intermediate |
0 commit comments