ligo/tools/webide
2020-06-03 09:55:37 -07:00
..
packages update to shorten example names in webide 2020-06-03 09:55:37 -07:00
.editorconfig Import webide into main ligo monorepo 2020-02-06 19:04:18 -08:00
.gitignore Import webide into main ligo monorepo 2020-02-06 19:04:18 -08:00
Dockerfile Install perl6 instead of the painful-to-install python3+fstrings 2020-04-13 19:23:12 +02:00
package.json Import webide into main ligo monorepo 2020-02-06 19:04:18 -08:00
README.md Revised README 2020-03-06 17:35:14 +00:00
tsconfig.json Import webide into main ligo monorepo 2020-02-06 19:04:18 -08:00
yarn.lock Add missing update to lock file 2020-06-02 21:08:26 -07:00

Quick Start

  1. Install yarn
  2. Run yarn to install dependencies
  3. Install Ligo compiler by following Ligo installation instructions
  4. Go to packages/server/ directory
  5. Run yarn start to start the development server
  6. Open http://localhost:8080

Dependency on Examples

Examples that are displayed in the Web IDE are curated from /src/test/examples folder and packaged during the build of the client. To add a new example to the Web IDE, first add the example file to /src/test/examples folder; it may live under any level of subdirectories. Then, add the path to the example to the CURATED_EXAMPLES array in the packages/client/package-examples.js script. The path has to be relative to /src/test/examples.

Server

The server source code is located under packages/server/. Please see README under packages/server/ for information about how to get started on the server development.

Client

The client source code is located under packages/client/. See the README under the packages/client/ for information about how to get started on the client development.