port-fix
All checks were successful
Deploy on Push / deploy (push) Successful in 31s

This commit is contained in:
Untone 2024-05-06 12:12:12 +03:00
parent 90e8b7272a
commit 0f545161d5
2 changed files with 2 additions and 2 deletions

View File

@ -16,6 +16,6 @@ RUN pip install poetry && poetry config virtualenvs.create false && poetry insta
COPY . /app
# Expose the port
EXPOSE 8000
EXPOSE 8080
CMD ["python", "server.py"]

View File

@ -1,6 +1,6 @@
from os import environ
PORT = 8000
PORT = 8080
AUTH_URL = environ.get("AUTH_URL") or "https://auth.discours.io/graphql"
STORJ_ACCESS_KEY = environ.get("STORJ_ACCESS_KEY")
STORJ_SECRET_KEY = environ.get("STORJ_SECRET_KEY")