This is the repository for SIG-Game's webserver application, the main entry point for competitors of MegaMinerAI.
To develop on the project, you'll need a newer version of NodeJS (LTS is preferred).
If you're on Windows, Git Bash is reccomended as a replacement for Command Prompt.
Once you've installed that and cloned the project files down, go ahead and run the following:
$ npm install
$ cd client/
$ npm install
$ cd ..
This will install all of the needed packages and put you back in the base directory of the repo. Once you're there, run the following to start the server in debug mode:
npm run debug
You can then navigate to localhost:3000 to use the site.
Once you make changes to the files on your local machine, refresh the page in your browser to see your changes.
--
--