rename main to node_main for IDE clarity

This commit is contained in:
Logan Cusano
2025-12-28 14:07:17 -05:00
parent 26e90f4584
commit b6a503a3e9
2 changed files with 74 additions and 49 deletions

View File

@@ -49,4 +49,4 @@ RUN sed -i 's/\r$//' /usr/local/bin/docker-entrypoint.sh && \
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
# 3. Use CMD to pass the uvicorn command as arguments to the ENTRYPOINT script
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8001", "--reload"]
CMD ["uvicorn", "node_main:app", "--host", "0.0.0.0", "--port", "8001", "--reload"]