refac: SERVER_PORT renamed to PORT
This commit is contained in:
parent
a63507c21e
commit
0e039492c6
|
@ -17,6 +17,7 @@ RUN npm run build
|
|||
FROM python:3.11-slim-bookworm as base
|
||||
|
||||
ENV ENV=prod
|
||||
ENV PORT ""
|
||||
|
||||
ENV OLLAMA_API_BASE_URL "/ollama/api"
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SERVER_PORT="${SERVER_PORT:-8080}"
|
||||
uvicorn main:app --port $SERVER_PORT --host 0.0.0.0 --forwarded-allow-ips '*' --reload
|
||||
PORT="${PORT:-8080}"
|
||||
uvicorn main:app --port $PORT --host 0.0.0.0 --forwarded-allow-ips '*' --reload
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
SERVER_PORT="${SERVER_PORT:-8080}"
|
||||
uvicorn main:app --host 0.0.0.0 --port $SERVER_PORT --forwarded-allow-ips '*'
|
||||
PORT="${PORT:-8080}"
|
||||
uvicorn main:app --host 0.0.0.0 --port $PORT --forwarded-allow-ips '*'
|
||||
|
|
Loading…
Reference in New Issue