Commit c666cabe authored by Patrik Meijer's avatar Patrik Meijer
Browse files

Add a README

parent 1e621022
Loading
Loading
Loading
Loading

README.md

0 → 100644
+30 −0
Original line number Diff line number Diff line
# webgme-react-components
A set of reusable react components with webgme client as data source.

This is still very much Work In Progress!

Things to enhance:
 - Better documentation of each component (ideally a standard template)
 - Client mock must be smarter - ideally take an example project json and use as local backend.
 - Introduce unit tests for components


## Developers

### Demo page
Add a demo.jsx inside each new component directory.
Make sure to include it in `/demo/demoApp.jsx`

```
npm start
```

### Creating a Release

```
npm version 1.0.0 -m "Release %s"
git push origin master
git checkout v1.0.0
git push origin v1.0.0
npm publish ./
```