-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
@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:
yarn install
yarn start
and some instructions on how to deploy.
Metadata
Metadata
Assignees
Labels
No labels