Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The basic config #2

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

node_modules/
npm-debug\.log
out/
lerna-debug\.log
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
# JSONForms Tooling

Make it easier for developers to use [JSONForms](https://github.com/eclipsesource/jsonforms)

## Continuous Integration
The JSONForms project is build and tested via [Travis](https://travis-ci.org/). Coverage is documented by [Coveralls](https://coveralls.io).

Current status: [![Build Status](https://travis-ci.org/eclipsesource/jsonforms-tooling.svg?branch=master)](https://travis-ci.org/eclipsesource/jsonforms-tooling) [![Coverage Status](https://coveralls.io/repos/eclipsesource/jsonforms-tooling/badge.svg?branch=master&service=github)](https://coveralls.io/github/eclipsesource/jsonforms-tooling?branch=master)

## Getting started

To get started, you just need to run the following commands:
```
npm install
```
This will install all dependecies for the `theia-plugin`, the `vscode-extension` and the `tooling` package.
It will also run the `lerna bootstrap` and the `lerna postinstall` command.

To compile the code in all packages, just run
```
npm run compile
```

For more information on each package, please read the README of those packages.

## License
The JSONForms project is licensed under the MIT License. See the [LICENSE file](https://github.com/eclipsesource/jsonforms-tooling/blob/master/LICENSE) for more information.
4 changes: 4 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"version": "0.0.1",
"packages": ["tooling", "theia-plugin", "vscode-extension"]
}
Loading