Skip to content

Commit bf9b85b

Browse files
TheZokeredgarmueller
authored andcommitted
The basic config (#2)
Setup basic project structure
1 parent b2211b2 commit bf9b85b

27 files changed

+15933
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
node_modules/
3+
npm-debug\.log
4+
out/
5+
lerna-debug\.log

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,27 @@
11
# JSONForms Tooling
22

3+
Make it easier for developers to use [JSONForms](https://github.com/eclipsesource/jsonforms)
4+
35
## Continuous Integration
46
The JSONForms project is build and tested via [Travis](https://travis-ci.org/). Coverage is documented by [Coveralls](https://coveralls.io).
57

68
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)
79

10+
## Getting started
11+
12+
To get started, you just need to run the following commands:
13+
```
14+
npm install
15+
```
16+
This will install all dependecies for the `theia-plugin`, the `vscode-extension` and the `tooling` package.
17+
It will also run the `lerna bootstrap` and the `lerna postinstall` command.
18+
19+
To compile the code in all packages, just run
20+
```
21+
npm run compile
22+
```
23+
24+
For more information on each package, please read the README of those packages.
25+
826
## License
927
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.

lerna.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"version": "0.0.1",
3+
"packages": ["tooling", "theia-plugin", "vscode-extension"]
4+
}

0 commit comments

Comments
 (0)