unoverse 0.1.26 → 0.1.27

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.
@@ -114,7 +114,7 @@ cmd_init() {
114
114
  # A DEFAULT, because "from your admin" is meaningless when you are the admin. The
115
115
  # platform ships no database (docker-compose has no postgres), so this points at one
116
116
  # you run. Enter takes the conventional local one.
117
- DB_DEFAULT="postgres://postgres:postgres@localhost:5432/universe"
117
+ DB_DEFAULT="postgres://postgres:postgres@localhost:5432/unoverse"
118
118
  while true; do
119
119
  read -p " DATABASE_URL [${DB_DEFAULT}]: " DATABASE_URL || { fail "no input (end of stream). Run unoverse init interactively"; exit 1; }
120
120
  DATABASE_URL="${DATABASE_URL:-$DB_DEFAULT}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "description": "The Unoverse front door — create a Studio project, a universe, or a client app, and launch Studio.",
5
5
  "license": "SEE LICENSE IN README.md",
6
6
  "type": "module",