@rpcbase/server 0.188.0 → 0.190.0

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/cli/run_docker.js CHANGED
@@ -25,7 +25,7 @@ const run_docker = async(infrastructure_dir, proj_prefix) => {
25
25
  compose_files.push("-f", "dev.yml")
26
26
  }
27
27
 
28
- const opts = ["--build", "--quiet-pull", "--remove-orphans", "--force-recreate"]
28
+ const opts = ["--build", /*"--quiet-pull",*/ "--remove-orphans", "--force-recreate"]
29
29
  if (!is_production) opts.push("--abort-on-container-exit")
30
30
 
31
31
  const cmd = "docker compose"
package/express/index.js CHANGED
@@ -56,6 +56,7 @@ module.exports = () => {
56
56
  `https://eu.posthog.com`,
57
57
  ] :
58
58
  // local dev origins
59
+ // TODO: fixme, make this dynamic!
59
60
  [
60
61
  `http://127.0.0.1:${CLIENT_PORT}`,
61
62
  `http://localhost:${CLIENT_PORT}`,
@@ -70,6 +71,9 @@ module.exports = () => {
70
71
  "http://localhost:8090", // TMP: used by inspected app from admin
71
72
  "http://localhost:8091", // TMP: used by inspected app from admin
72
73
  "http://localhost:9292", // TMP
74
+ // posthog
75
+ `https://app.posthog.com`,
76
+ `https://eu.posthog.com`,
73
77
  ]
74
78
 
75
79
  if (APP_DOMAIN) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/server",
3
- "version": "0.188.0",
3
+ "version": "0.190.0",
4
4
  "license": "SSPL-1.0",
5
5
  "main": "./index.js",
6
6
  "bin": {