Skip to content

Commit

Permalink
change default example port #
Browse files Browse the repository at this point in the history
  • Loading branch information
Broch Stilley committed Apr 27, 2016
1 parent 027917d commit 82b5d45
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ Akkad

[![Join the chat at https://gitter.im/brochington/Akkad](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/brochington/Akkad?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)


`npm install --save akkad`

requires npm >= 5.0

#### Docs:

[Getting Started](https://github.com/brochington/Akkad/blob/master/docs/getting_started.md)
Expand All @@ -21,7 +24,7 @@ Akkad is a React Webgl target that uses the Babylon.js library. Its aim is to al
### Features

- Full power of React meets WebGL and Babylon
- Embedd multiple interactive "scenes" directly in your React based site.
- Embed multiple interactive "scenes" directly in your React based site.
- Uses a redux-like state cycle
- Defined method of extention via Entities and Systems.

Expand Down Expand Up @@ -81,6 +84,7 @@ From the project root:
$ cd akkad
$ npm run setup:watch
$ cd ../example
$ npm run setup:dev // only needed the first time.
$ npm run start:dev
```

Expand Down
4 changes: 2 additions & 2 deletions example/devServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ app.get('*', function(req, res) {
res.sendFile(path.join(__dirname, 'index.html'));
});

app.listen(3031, 'localhost', function(err) {
app.listen(3032, 'localhost', function(err) {
if (err) {
console.log(err);
return;
}

console.log('Listening at http://localhost:3031');
console.log('Listening at http://localhost:3032');
});

0 comments on commit 82b5d45

Please sign in to comment.