-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wrapping up account deletion * bump to v0.3.4 * cargo updatez * restrict concurrent table participation * more readme updates
- Loading branch information
Showing
16 changed files
with
204 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bankah" | ||
version = "0.3.3" | ||
version = "0.3.4" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "stickbot" | ||
version = "0.3.3" | ||
version = "0.3.4" | ||
edition = "2018" | ||
|
||
[lib] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## Stickbot | ||
|
||
This a [rust] application is the http-based web api backend for [twowaiyo], using a simple REST api to allow players | ||
to join, participate and leave games. The [emberjs] web-browser frontend is located at [github.com/dadleyy/oncore]. | ||
|
||
#### Developing Locally | ||
|
||
The web backend currently relies on three third party services: | ||
|
||
1. [mongodb] for peristing table and player state. | ||
2. [redis] for the asynchronous background job queue. | ||
3. [auth0] for handling the integration with third party OAuth providers. | ||
|
||
At this time, free, hosted instances of mongodb and redis are available at [mongodb.com/cloud][mdbc] and [redislabs] | ||
respectively. After creating the necessary accounts (or leveraging on-premise version of these), the `.env.example` | ||
file located at the root of this repository can be used as a template for setting the credentials for authenticating | ||
with these services. | ||
|
||
Once the environment variables have been prepared, the main web process and background worker can be started using the | ||
appropriate `cargo` aliases: | ||
|
||
|
||
[rust]: https://www.rust-lang.org/ | ||
[twowaiyo]: https://github.com/dadleyy/twowaiyo | ||
[mongodb]: https://www.mongodb.com/ | ||
[redis]: https://redis.io/ | ||
[mdbc]: https://www.mongodb.com/cloud | ||
[redislabs]: https://app.redislabs.com/#/login | ||
[auth0]: https://auth0.com/ | ||
[github.com/dadleyy/oncore]: https://github.com/dadleyy/oncore | ||
[emberjs]: https://emberjs.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.