Readd default host in getstarted

Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
This commit is contained in:
Alexandre Bodin 2020-04-29 16:22:22 +02:00
parent a7436e2248
commit 0fa1d561cc

View File

@ -1,4 +1,4 @@
module.exports = ({ env }) => ({
host: env('HOST'),
port: env.int('PORT'),
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
});