Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.05 KB

README.md

File metadata and controls

30 lines (18 loc) · 1.05 KB

Robot tournament setup files

Setup files to help speed up playing the Robot Tournament

Initial config

required command line tools: curl & zip

  1. Choose a player name

  2. Rename the player folder to your player name

  3. Edit release.sh:

  • make it executable eg: chmod +x release.sh

  • set your player name

  • set the ip (this will be given to you in the session)

    optional: If using Java, Scala or C# uncomment the appropriate lines

  1. Edit the move file inside your player folder:
  • make it executable eg: chmod +x move
  • uncomment the appropriate line for your language

That's it, now go and write some codes! You can use the Main file with your language extension inside your player folder.

When you want to deploy your code to the server, just run ./release.sh at the root of the repo.

P.s. These files are meant to get you started quickly. Feel free to edit them or have a completely different deploy process.