wilfredwake 1.0.1 → 1.0.2

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/.env.example CHANGED
@@ -10,7 +10,10 @@
10
10
  # Port to run orchestrator on
11
11
  PORT=3000
12
12
 
13
- # Path to service registry file
13
+ # Orchestrator public URL when deployed (used by CLI defaults)
14
+ ORCHESTRATOR_URL=https://wilfredwake.onrender.com
15
+
16
+ # Path to local service registry file (used by orchestrator server)
14
17
  REGISTRY_FILE=./src/config/services.yaml
15
18
 
16
19
  # Node environment
package/README.md CHANGED
@@ -829,3 +829,4 @@ For issues, questions, or suggestions:
829
829
  **Made with ❤️ by Wilfred Wake**
830
830
 
831
831
  *Keep your development environment awake and ready!* 🌅
832
+ # wilfredwake
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wilfredwake",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "CLI Tool for Multi-Developer Development Environment Wake & Status Management",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/src/cli/config.js CHANGED
@@ -27,8 +27,8 @@ export class ConfigManager {
27
27
  // DEFAULT CONFIGURATION
28
28
  // ═══════════════════════════════════════════════════════════════
29
29
  this.defaultConfig = {
30
- version: '1.0.0',
31
- orchestratorUrl: 'http://localhost:3000',
30
+ version: '1.0.0',
31
+ orchestratorUrl: 'https://wilfredwake.onrender.com',
32
32
  token: null,
33
33
  environment: 'dev',
34
34
  userId: this._generateUserId(),
@@ -47,11 +47,11 @@ export class ConfigManager {
47
47
  },
48
48
  staging: {
49
49
  name: 'Staging',
50
- orchestratorUrl: 'http://staging-orchestrator:3000',
50
+ orchestratorUrl: 'https://wilfredwake.onrender.com',
51
51
  },
52
52
  prod: {
53
53
  name: 'Production',
54
- orchestratorUrl: 'http://prod-orchestrator:3000',
54
+ orchestratorUrl: 'https://wilfredwake.onrender.com',
55
55
  },
56
56
  },
57
57
  lastSyncTime: null,