Skip to content
/ vindinium Public
forked from ornicar/vindinium

Artificial Intelligence Challenge - scala game server

License

Notifications You must be signed in to change notification settings

gre/vindinium

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Four legendary heroes were fighting for the land of Vindinium

Making their way in the dangerous woods

Slashing goblins and stealing gold mines

And looking for a tavern where to drink their gold

Game rules: http://vindinium.org/doc Doc & starter bots: http://vindinium.org/starters

Installation

Feel free to install a local instance for your private tournaments. You need sbt, a MongoDB instance running, and a Unix machine (only Linux has been tested, tho).

git clone git://github.com/ornicar/vindinium
cd vindinium
sbt compile
sbt run

Vindinium is now running on http://localhost:9000.

Optional reverse proxy

Here's an exemple of nginx configuration:

server {
 listen 80;
 server_name my-vindinium.org;

  location / {
    proxy_http_version 1.1;
    proxy_read_timeout 24h;
    proxy_pass  http://127.0.0.1:9000/;
  }
}

Credits

Kudos to:

  • vjousse for the UI and testing
  • veloce for the JavaScript and testing

About

Artificial Intelligence Challenge - scala game server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 51.6%
  • Scala 43.0%
  • CSS 4.7%
  • Shell 0.7%