The main website for the MoonCode app
mooncode.cc
This project is the website (marketing site) of the MoonCode project. It is built on top of Nextjs.
To run the website, you need to first clone the repository
git clone https://github.com/Friedrich482/mooncode-monorepo.gitThen cd in the web folder
cd apps/webThen install dependencies
npm installRun
npm run devand open http://localhost:3001
To build for production, build with:
npm run buildand start the built app with:
npm run startThe website is currently deployed on mooncode.cc.
To dockerize the application, you need to place yourself at the root of the monorepo, then
docker build -t mooncode-web -f apps/web/Dockerfile --progress=plain .And to run a container called mooncode-web-container :
docker run -d -p 3002:8080 --name mooncode-web-container mooncode-webMIT License © 2026
