Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 853 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 853 Bytes

Mooncake Website

This repository contains the official Mooncake website that can be reached at mooncake.app.

Development

This website is developed using Next.js.

Local testing

To test this website on your local machine, just run the following command:

yarn dev

Docker

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.