From e0ab36ff61f10c42fdb24a4c5c37976199938d6d Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Thu, 31 Oct 2024 15:45:42 -0500 Subject: [PATCH] fix:set app_port as default --- .env.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index d90221e..c31807b 100644 --- a/.env.example +++ b/.env.example @@ -3,9 +3,9 @@ APP_ENV=production APP_KEY= APP_DEBUG=false APP_TIMEZONE=UTC -APP_URL=http://localhost -ASSET_URL="${APP_URL}" APP_PORT=8000 +APP_URL="http://localhost:${APP_PORT}" +ASSET_URL="${APP_URL}" SELF_HOSTED=true REGISTRATION_ENABLED=true