From c373cce6be69628c674bf05ee2099f29f657fd9d Mon Sep 17 00:00:00 2001 From: Alter Lagos Date: Mon, 30 Sep 2024 17:01:45 +1300 Subject: [PATCH] Set 3000 as the default web port Having by default `PORT=` only assigns to that variable `0`, which is interpreted by puma to start the web app in a random port when `bin/dev` is called. --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 5391e0a41a3..4496a6813c2 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,6 @@ # Custom port config # For users who have other applications listening at 3000, this allows them to set a value puma will listen to. -PORT= +PORT=3000 # Exchange Rate API # This is used to convert between different currencies in the app. We use Synth, which is a Maybe product. You can sign up for a free account at synthfinance.com.