This repository contains the official Mooncake website that can be reached at mooncake.app.
This website is developed using Next.js.
To test this website on your local machine, just run the following command:
yarn dev
In order to provide an easier deployment experience, we provide a Dockerfile that can be used to build and run the website. In order to build the Docker image and then run it, you can use the following commands:
# First, build the Docker image
docker build -t desmoslabs/mooncake-website:latest .
# Then, run the image
docker run --name bondscape-website -p 5000:3000 desmoslabs/mooncake-website:latest
After running this command, you will be able to reach the website at http://localhost:5000.