https://github.com/jvalduvieco/catacomb
https://github.com/jvalduvieco/catacomb
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jvalduvieco/catacomb
- Owner: jvalduvieco
- License: mit
- Created: 2012-08-14T10:52:17.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-03-28T12:55:00.000Z (about 12 years ago)
- Last Synced: 2025-03-22T14:51:10.973Z (2 months ago)
- Language: Erlang
- Size: 928 KB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Catacomb
========
This is a game full of rooms that can be played from the web browser. It is inspired in the old MUD games that we used to play.
For us it is an excuse to learn Erlang so don't take it too seriously, we are in the early stages of Erlang.This game is developed by:
* Daniel Codina [@dcodix](https://twitter.com/dcodix)
* Jordi Llonch [@jordillonch](https://twitter.com/jordillonch)
* Joan Valduvieco [@jvalduvieco](https://twitter.com/jvalduvieco)## Screenshot

## Using catacomb
git clone https://github.com/jvalduvieco/catacomb.git
cd catacomb/apps/catacomb_core
./rebar get-deps
./rebar compile
Now you need to create MySQL tables and load some fixtures.
cat priv/catacomb.sql |mysql
If all goes without error just type:
erl -pa ebin deps/*/ebin -boot catacomb_core
Now you should be able to point your browser to:
http://localhost:8081
And login as:
jordi // pass
(You can add users directly to MySQL)Load a character, and play!!!
## Comments and help are welcome. :)