@powerhousedao/academy 4.1.0-dev.30 → 4.1.0-dev.31
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,13 @@
|
|
|
1
|
+
## 4.1.0-dev.31 (2025-08-20)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- added interactive mode to vetra command ([#1775](https://github.com/powerhouse-inc/powerhouse/pull/1775))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Guillermo Puente Sandoval @gpuente
|
|
10
|
+
|
|
1
11
|
## 4.1.0-dev.30 (2025-08-20)
|
|
2
12
|
|
|
3
13
|
### 🩹 Fixes
|
|
@@ -744,6 +744,10 @@ Options:
|
|
|
744
744
|
|
|
745
745
|
--disable-connect Skip Connect initialization (only start switchboard and reactor).
|
|
746
746
|
Use this when you only need the backend services running.
|
|
747
|
+
|
|
748
|
+
--interactive Enable interactive mode for code generation. When enabled, the system
|
|
749
|
+
will prompt for user confirmation before generating code. This is useful
|
|
750
|
+
for development when you want control over when code regeneration happens.
|
|
747
751
|
|
|
748
752
|
Examples:
|
|
749
753
|
$ ph vetra # Start Vetra environment with defaults
|
|
@@ -753,6 +757,7 @@ Examples:
|
|
|
753
757
|
$ ph vetra --logs # Enable detailed logging
|
|
754
758
|
$ ph vetra --remote-drive http://localhost:4001/d/docs # Connect to remote drive
|
|
755
759
|
$ ph vetra --disable-connect # Start only backend services
|
|
760
|
+
$ ph vetra --interactive # Enable interactive code generation mode
|
|
756
761
|
$ ph vetra --https-key-file key.pem --https-cert-file cert.pem # Use HTTPS
|
|
757
762
|
```
|
|
758
763
|
|