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.
- package/operator/lib/init.sh +1 -1
- package/package.json +1 -1
package/operator/lib/init.sh
CHANGED
|
@@ -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/
|
|
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