BesMetaverse project is related to land purchase, it is likely that it is focused on creating a virtual world that is based on a virtual land ownership system. In such a project, users would be able to purchase virtual land in the metaverse, which they can then use to create and customize their own virtual spaces.
To get started, just clone the repository and run npm install && npm run dev:
git clone https://github.com/BESMetaverse/metaverse.git
npm install
npm run dev
If you wanted to run this site in locally development, you should install modules then build the site with npm run build and run it with npm start:
npm install
npm run build
npm start
If you wanted to run this site in production, you should install modules then build the site with npm run build and run it with npm start:
npm install
npm run build
npm start
You should run npm run build again any time you make changes to the site.
If you configure a .env file (just copy .env.example over to '.env' and fill in the options) you can configure a range of options.
NEXT_PUBLIC_API_KEY=API_KEY_URL
NEXT_PUBLIC_PROJECT_ID='PROJECT_ID'
NEXT_PUBLIC_CONTRACT_ID ='CONTRACT_ID'
GENERATE_SOURCEMAP=false
Here is a command you should now be able to run tests once npm test
This example shows how to configure Jest to work with Next.js.
This includes Next.js' built-in support for Global CSS, CSS Modules and TypeScript.
Quickly get started using Create Next App!
In your terminal, run the following command:
npx create-next-app
or
yarn create-next-app