- Live network: https://web.moera.org
- Read more about Moera at https://moera.org
- Bugs and feature requests: https://github.com/MoeraOrg/moera-issues/issues
- How to set up a complete Moera Development Environment: http://moera.org/development/development-environment.html
- As prerequisites, you need to have Node.js 8.12+ and Yarn installed.
- Go to the source directory.
- Install project dependencies with
yarn install
. - By default, the web server that serves the client runs on port 3000. If you
want it to run on a different port, change the value of
PORT
variable in./run
script. - If you use your own naming server, make sure its location is set correctly in client settings.
- Execute
./run
script. - A new browser tab with the client in it is opened automatically.
The project uses absolute paths for imports. If your IDE complains about non-installed modules, you may do the following (or read the full instructions):
- Mark the
src/
directory as a Resources Root. - Go to Settings > Editor > Code Style > JavaScript, go to the Imports tab and tick Use paths relative to the project, resource or sources roots.
- Go to Settings > Editor > Code Style > TypeScript, go to the Imports tab and tick Use paths relative to tsconfig.json.