@orientalsniper asked for how to deploy to vercel. But I dunno what format vercel requires to recognize it as a vanilla nodejs app.
Atm I deploy it manually to a kubernetes cluster as docker container. With Dockerfile:
FROM node:15
WORKDIR /usr/src/app
COPY package.json ./
RUN npm install
ENV PORT=8080
COPY index.js ./
COPY aoe4/ ./aoe4/
COPY views/ ./views/
RUN ls -al
EXPOSE 8080
CMD [ "node", "index.js" ]
Regardless, we should probably have some instructions on how to build and run it locally:
and some instructions on how to deploy.
@orientalsniper asked for how to deploy to vercel. But I dunno what format vercel requires to recognize it as a vanilla nodejs app.
Atm I deploy it manually to a kubernetes cluster as docker container. With Dockerfile:
Regardless, we should probably have some instructions on how to build and run it locally:
and some instructions on how to deploy.