Skip to content
This repository has been archived by the owner on Jul 2, 2019. It is now read-only.

Commit

Permalink
Merge branch 'master' into runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
vitormsilva committed Nov 7, 2016
2 parents c56e7db + 80735cd commit e768757
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ See the [Wiki](https://github.com/reTHINK-project/dev-hyperty-toolkit/wiki) for
To run the toolkit do the following:

```shell
# clone the toolkit repository
git clone --branch=runtimes https://github.com/reTHINK-project/dev-hyperty-toolkit.git
# clone the toolkit repository with the stable branches
git clone https://github.com/reTHINK-project/dev-hyperty-toolkit.git
```

```shell
# clone the dev-hyperty repository
git clone https://github.com/reTHINK-project/dev-hyperty.git

Expand All @@ -31,7 +33,9 @@ cd dev-hyperty-toolkit
npm install
```


### To develop Hyperties for Browsers

```shell
# run the toolkit for browser and select where is the dev-hyperty repository
npm run start:browser
Expand All @@ -42,7 +46,33 @@ Open `https://catalogue.localhost/` and accept certificate
Open `https://localhost/` and select an Hyperty to run.

### To develop Hyperties for Nodejs

```shell
# or toolkit for nodejs and select where is the dev-hyperty repository
npm run start:node
```

## Other developments

The toolkit can also be used to test other rethink components.

* To test development branches from Runtime Core or Service Framework, Use Toolkit develop branch:

```shell
# clone the toolkit repository with the develop branches
git clone --branch=develop https://github.com/reTHINK-project/dev-hyperty-toolkit.git
```

* To test stable releases (master branch) from Runtime Browser or Runtime Node, Use Toolkit "runtimes" branch:

```shell
# clone the toolkit repository with the stable releases
git clone --branch=runtimes https://github.com/reTHINK-project/dev-hyperty-toolkit.git
```

* To test "develop" branches from Runtime Browser or Runtime Node, Use Toolkit "runtimes-develop" branch:

```shell
# clone the toolkit repository with the develop branches
git clone --branch=runtimes-develop https://github.com/reTHINK-project/dev-hyperty-toolkit.git
```

0 comments on commit e768757

Please sign in to comment.