mirror of
https://github.com/jwadow/kiro-gateway.git
synced 2026-04-25 01:15:57 +03:00
[GH-ISSUE #19] feature request: user configurable port for v2.0 #16
Labels
No labels
bug
bug
enhancement
enhancement
fixed
fixed
invalid
needs-info
needs-testing
pull-request
question
upstream
wontfix
workaround
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/kiro-gateway-jwadow#16
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mzazon on GitHub (Jan 7, 2026).
Original GitHub issue: https://github.com/jwadow/kiro-gateway/issues/19
I was prototyping a few different apps locally and kept running into port 8000 being taken as is default for some web frameworks. would be nice to have a configurable (optional) port in .env
thank you for your work! this thing is awesome.
@jwadow commented on GitHub (Jan 7, 2026):
Hey @mzazon, good to see you again
Honestly surprised this wasn't in from the start, but here we are
Now you can do:
python main.py --port 9000(oruvicorn main:app --port 9000directly)Priority: CLI args > env vars > default (8000)
Thanks for the suggestion, this is a solid qol improvement