Overview
This is the tool to use Adventure Mates on the web. Using Node.js, it provides the web-platform of Adventure Mates, which is a traffic simulator.
It requires Adventure Mates(http://adventure.sys.t.u-tokyo.ac.jp/download/Mates.html) and you have to compile it before you use it.
node start bin/www Other options can be set w/ config.js
(You need node & npm & mysql)
- setting config.js
- npm install
- make database
sudo mysql create database nodemates; use nodemates; create table `map` ( `username` varchar(20) default null, `mapname` varchar(20) default null, `last_update` varchar(20) default null ); create table `user` ( `username` varchar(20) not null default '', `password` varchar(16) default null, primary key (`username`) ); CREATE USER 'username' IDENTIFIED BY 'password'; GRANT ALL on * to 'username';
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request