Skip to content

Commit

Permalink
documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
or-else committed Jun 25, 2017
1 parent f53ca21 commit 6b3c2fd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Instant messaging server. Backend in pure [Go](http://golang.org) (license [GPL

Version 0.13. This is beta-quality software: feature-complete but probably with bugs. Follow [instructions](INSTALL.md) to install and run. Read [API documentation](API.md).

A javascript demo is (usually) available at http://api.tinode.co/x/example-react-js/ ([source](https://github.com/tinode/example-react-js/)). Login as one of `alice`, `bob`, `carol`, `dave`, `frank`. Password is `<login>123`, e.g. login for `alice` is `alice123`. [Android demo](https://github.com/tinode/android-example) is mostly stable and functional. See screenshots below.
A javascript demo is (usually) available at http://api.tinode.co/x/example-react-js/ ([source](https://github.com/tinode/example-react-js/)). Login as one of `alice`, `bob`, `carol`, `dave`, `frank`. Password is `<login>123`, e.g. login for `alice` is `alice123`. You can discover other users by email or phone by prefixing them with `email:` or `tel:` respectively. Emails are `<login>@example.com`, e.g. `alice@example.com`, phones are `17025550001` through `17025550009`. The demo is reset every night at 3:15 am Pacific time.
[Android demo](https://github.com/tinode/android-example) is mostly stable and functional. See screenshots below.


## Why?
Expand All @@ -17,8 +18,7 @@ A javascript demo is (usually) available at http://api.tinode.co/x/example-react

* [Android](https://github.com/tinode/android-example/) and [web](https://github.com/tinode/example-react-js/) clients.
* One-on-one messaging.
* Group messaging with currently unlimited number of members where every member's access permissions are managed
individually. The maximum number of members will be limited to a reasonably high value in the future (256? configurable?).
* Group messaging with currently unlimited number of members where every member's access permissions are managed individually. The maximum number of members will be limited to a reasonably high value in the future (256? configurable?).
* Topic access control with permissions for various actions.
* Server-generated presence notifications for people, topics.
* Basic sharded clustering.
Expand Down
6 changes: 3 additions & 3 deletions build-all.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

go install -ldflags "-X main.buildstamp=`date -u '+%Y%m%dT%H:%M:%SZ'`" ./server
go install ./tinode-db
go install ./keygen
~/go/bin/gox -osarch="linux/amd64" -ldflags "-X main.buildstamp=`date -u '+%Y%m%dT%H:%M:%SZ'`" ./server
~/go/bin/gox -osarch="linux/amd64" ./tinode-db
~/go/bin/gox -osarch="linux/amd64" ./keygen

0 comments on commit 6b3c2fd

Please sign in to comment.