https://github.com/decentraland/builder
🍉 Build scenes for Decentraland
https://github.com/decentraland/builder
3d-editor builder dapp decentraland land
Last synced: 25 days ago
JSON representation
🍉 Build scenes for Decentraland
- Host: GitHub
- URL: https://github.com/decentraland/builder
- Owner: decentraland
- License: other
- Created: 2018-12-21T17:38:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-25T18:22:03.000Z (about 1 month ago)
- Last Synced: 2025-04-25T19:28:50.430Z (about 1 month ago)
- Topics: 3d-editor, builder, dapp, decentraland, land
- Language: TypeScript
- Homepage: https://builder.decentraland.org
- Size: 569 MB
- Stars: 153
- Watchers: 23
- Forks: 87
- Open Issues: 195
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Decentraland Builder [](https://coveralls.io/github/decentraland/builder?branch=chore/add-tests-and-ci)
You can create beautiful scenes for [Decentraland](https://decentraland.org) even if you don't own a parcel.

# How to run
The builder is a SPA or single page application built with [create-react-app](https://github.com/facebook/create-react-app). It uses an [`.env`](#environment) file as configuration for a few things, you'll need to create that first.
After that, to run this app you have two options:
- **Development Server**: run `npm start` from the [`root`](https://github.com/decentraland/builder/tree/master) path
- **Production**: run `npm run build` and host the resulting index.html file with your server of choice, for example `python -m SimpleHTTPServer 5000`For more information, check the [create-react-app](https://github.com/facebook/create-react-app) repo.
## Environment
This project depends on a few environment variables to work, as well as external services for some features.
The front-end connects to these services via URLs set via environment variables.**Creating an environment file**
You'll need Create an `.env` file on the [`root`](https://github.com/decentraland/builder/tree/master) folder and fill it following the `.env.example` file found there.
You will need to specify `NODE_PATH` to be `src`.
Here are the basic requirements to run the project:
```
# .envNODE_PATH=src
```