This document outlines the steps for building and deploying the TermuxCoder project.
The project requires Node.js and npm (or yarn) to be installed.
npm install
or
yarn install
npm run build
This will generate the build files in the dist
directory.
Dockerfile
:
docker build -t termuxcoder .
There are several ways to deploy the TermuxCoder project:
npm start
Ensure you have built the frontend first (npm run build
).
docker-compose up
This will build the image (if not already built) and start the container, mapping port 3000.
docker run -d -p 3000:3000 termuxcoder
vercel.json
file, suggesting it can be deployed to Vercel. Refer to the Vercel documentation for detailed instructions on deploying Node.js applications.