@rip-lang/server 1.3.34 → 1.3.35

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.
Files changed (2) hide show
  1. package/README.md +15 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1037,13 +1037,27 @@ migrations, table creation, and seeding.
1037
1037
  export setup = ->
1038
1038
  await createTables()
1039
1039
  await seedData()
1040
- console.log 'Database ready'
1040
+ p 'Database ready'
1041
1041
  ```
1042
1042
 
1043
1043
  The setup function can export as `setup` or `default`. If the file doesn't
1044
1044
  exist, the setup phase is skipped entirely (no overhead). If setup fails,
1045
1045
  the server exits immediately.
1046
1046
 
1047
+ When `setup.rip` is present, the `rip-server: https://...` URL lines are
1048
+ **suppressed at the top** of the output — they will appear later via `[setup]`
1049
+ instead, after migrations complete. The actual server URLs are passed to the
1050
+ setup process as `process.env.RIP_URLS` (comma-separated), so you can display
1051
+ them exactly as rip-server computed them:
1052
+
1053
+ ```coffee
1054
+ # setup.rip — print URLs at the bottom after setup completes
1055
+ export setup = ->
1056
+ await runMigrations()
1057
+ urls = process.env.RIP_URLS?.split(',') or []
1058
+ p "[setup] #{urls.join(' | ')}"
1059
+ ```
1060
+
1047
1061
  ## Environment Variables
1048
1062
 
1049
1063
  Most settings are configured via CLI flags, but environment variables provide an alternative for containers, CI/CD, or system-wide defaults.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rip-lang/server",
3
- "version": "1.3.34",
3
+ "version": "1.3.35",
4
4
  "description": "Pure Rip web framework and application server",
5
5
  "type": "module",
6
6
  "main": "api.rip",
@@ -45,7 +45,7 @@
45
45
  "author": "Steve Shreeve <steve.shreeve@gmail.com>",
46
46
  "license": "MIT",
47
47
  "dependencies": {
48
- "rip-lang": ">=3.13.51"
48
+ "rip-lang": ">=3.13.52"
49
49
  },
50
50
  "files": [
51
51
  "api.rip",