Template for NCAIC 2022 Contest Competitors.
Checkout team.json
{
"register": false,
"name": "Team Name",
"org": "Team Organization",
"members": [
{
"name": "Member 1's Name",
"email": "Member 1's Email",
"github": "Member 1's Github Username"
},
{
"name": "Member 2's Name",
"email": "Member 2's Email",
"github": "Member 2's Github Username"
}
],
"program": "path/to/your/agent/source"
}
The first member of the team is the team leader.
For every member, the only required field is name
, and the other fields are optional.
Your code can be anywere in the repository, but you must set the program
field to the path of your agent source code file.
Set the register
field to true
in team.json
to register for the contest.