https://github.com/hashd/alobmat
Realtime Game Platform built on Phoenix and BEAM. Can run upto 1 million games concurrently on an average desktop computer. UI at:
https://github.com/hashd/alobmat
elixir game-server otp phoenix realtime tambola websockets
Last synced: over 1 year ago
JSON representation
Realtime Game Platform built on Phoenix and BEAM. Can run upto 1 million games concurrently on an average desktop computer. UI at:
- Host: GitHub
- URL: https://github.com/hashd/alobmat
- Owner: hashd
- Created: 2017-10-04T15:36:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-27T22:43:46.000Z (over 8 years ago)
- Last Synced: 2025-02-28T06:31:58.320Z (over 1 year ago)
- Topics: elixir, game-server, otp, phoenix, realtime, tambola, websockets
- Language: Elixir
- Homepage: http://github.com/dhavalpzala/alobmat-ui
- Size: 994 KB
- Stars: 9
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Alobmat
This is an open source realtime game server to host games of tambola. An average machine can host upto 100 thousands of games in under 16GB of RAM at the moment with over a million concurrent users connected across the number of games.
## Prerequisites
This piece of software is written in Elixir using Phoenix Framework, so you'll need to have these setup:
* [Erlang](http://www.erlang.org)
* [Elixir](http://elixir-lang.org)
* [Phoenix Framework](http://phoenixframework.org)
* [NPM](http://npmjs.com): *To install client side dependencies and run brunch*
## Setup
After you're done with the prerequisites, to start Phoenix server:
* `cd` into the project folder
* Install dependencies with `mix deps.get`
* Create and migrate your database with `mix ecto.create && mix ecto.migrate`
* Install Node.js dependencies with `cd assets && npm install`
* Start Phoenix endpoint with `mix phx.server`
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
## Configuration
Few pieces of this open source software is configurable and more about it will be put up soon.