@powerhousedao/academy 4.1.0-dev.30 → 4.1.0-dev.32
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,23 @@
|
|
|
1
|
+
## 4.1.0-dev.32 (2025-08-21)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **ph-cli:** resolve local document model loading in switchboard and vetra ([262f13035](https://github.com/powerhouse-inc/powerhouse/commit/262f13035))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Guillermo Puente @gpuente
|
|
10
|
+
|
|
11
|
+
## 4.1.0-dev.31 (2025-08-20)
|
|
12
|
+
|
|
13
|
+
### 🚀 Features
|
|
14
|
+
|
|
15
|
+
- added interactive mode to vetra command ([#1775](https://github.com/powerhouse-inc/powerhouse/pull/1775))
|
|
16
|
+
|
|
17
|
+
### ❤️ Thank You
|
|
18
|
+
|
|
19
|
+
- Guillermo Puente Sandoval @gpuente
|
|
20
|
+
|
|
1
21
|
## 4.1.0-dev.30 (2025-08-20)
|
|
2
22
|
|
|
3
23
|
### 🩹 Fixes
|
|
@@ -611,6 +611,10 @@ Options:
|
|
|
611
611
|
--config-file <path> Path to the powerhouse.config.js file. Default is
|
|
612
612
|
'./powerhouse.config.json'. This configures the switchboard behavior.
|
|
613
613
|
|
|
614
|
+
--dev Enable development mode to load local packages from the current directory.
|
|
615
|
+
This allows the switchboard to discover and load document models, processors,
|
|
616
|
+
and subgraphs from your local development environment.
|
|
617
|
+
|
|
614
618
|
--db-path <DB_PATH> Path to the database for storing document data.
|
|
615
619
|
|
|
616
620
|
--https-key-file <path> Path to the SSL key file if using HTTPS for secure connections.
|
|
@@ -626,6 +630,7 @@ Options:
|
|
|
626
630
|
Examples:
|
|
627
631
|
$ ph switchboard # Start switchboard with default settings
|
|
628
632
|
$ ph switchboard --port 5000 # Use custom port 5000
|
|
633
|
+
$ ph switchboard --dev # Enable dev mode to load local packages
|
|
629
634
|
$ ph switchboard --config-file custom.json # Use custom configuration file
|
|
630
635
|
$ ph switchboard --packages pkg1 pkg2 # Load specific packages
|
|
631
636
|
$ ph switchboard --base-path /switchboard # Set API base path to /switchboard
|
|
@@ -744,6 +749,10 @@ Options:
|
|
|
744
749
|
|
|
745
750
|
--disable-connect Skip Connect initialization (only start switchboard and reactor).
|
|
746
751
|
Use this when you only need the backend services running.
|
|
752
|
+
|
|
753
|
+
--interactive Enable interactive mode for code generation. When enabled, the system
|
|
754
|
+
will prompt for user confirmation before generating code. This is useful
|
|
755
|
+
for development when you want control over when code regeneration happens.
|
|
747
756
|
|
|
748
757
|
Examples:
|
|
749
758
|
$ ph vetra # Start Vetra environment with defaults
|
|
@@ -753,6 +762,7 @@ Examples:
|
|
|
753
762
|
$ ph vetra --logs # Enable detailed logging
|
|
754
763
|
$ ph vetra --remote-drive http://localhost:4001/d/docs # Connect to remote drive
|
|
755
764
|
$ ph vetra --disable-connect # Start only backend services
|
|
765
|
+
$ ph vetra --interactive # Enable interactive code generation mode
|
|
756
766
|
$ ph vetra --https-key-file key.pem --https-cert-file cert.pem # Use HTTPS
|
|
757
767
|
```
|
|
758
768
|
|