intbyte
intbyte
RRailway
Created by intbyte on 5/28/2024 in #✋|help
New deployments suddenly failing.
Got it working by removing --env-file=.env from the start command, thanks Brody!
6 replies
RRailway
Created by intbyte on 9/15/2023 in #✋|help
Connect to services using Private Networks
Oops, nevermind, misread your message
10 replies
RRailway
Created by intbyte on 9/15/2023 in #✋|help
Connect to services using Private Networks
If im correct, the server is binded to ::, unless im misunderstanding something...
if __name__ == "__main__":
port_env = os.getenv("PORT", default = 3001);
print(f"Application is listening to port {port_env}");

serve(
app = app,
host = "::",
port = port_env
);
if __name__ == "__main__":
port_env = os.getenv("PORT", default = 3001);
print(f"Application is listening to port {port_env}");

serve(
app = app,
host = "::",
port = port_env
);
10 replies
RRailway
Created by intbyte on 9/15/2023 in #✋|help
Connect to services using Private Networks
thanks for the suggestions though!
10 replies
RRailway
Created by intbyte on 9/15/2023 in #✋|help
Connect to services using Private Networks
Just tried, still the same error as above and as far as im aware the port is set correctly.
10 replies