-
Notifications
You must be signed in to change notification settings - Fork 9
Judging
Go to "bulk import hacks" and copy-and-paste your csv file from devpost here. Make sure you don't include the header column.
Table is a numeric attribute and stored in the "_id" column of the database. It auto-increments and cannot be changed.
Make sure you create judges only using the "Bulk create users" functionality. If you do it directly through Cognito, a corresponding "Judge" entry in the DB will not be created and the judge won't show up in the judge table!
You can view judges on the judge table. You can also edit their verticals here. If a judge is assigned to a vertical(s), they will get hacks from that vertical to review.
Make sure you input which vertical maps to which grand prize over here: https://github.com/TreeHacks/application-portal/blob/62c3b8413523046ea5fa9ef20c5179242215bc71/src/constants.ts#L39
export const VERTICALS_TO_CATEGORIES = {
"health": "Health Grand Prize",
"safety": "Security Grand Prize",
"awareness": "Energy Grand Prize",
// Required for unit tests:
"test1": "test1",
"test2": "test2",
"test3": "test3"
}
Login at https://root.treehacks.com
Judges can review. They can also skip a hack if they don't want to review it. Once a hack has 3 reviews, it's no longer displayed in the queue or "number remaining".
- TODO: show stats such as # of applications reviewed on the judges table.
- TODO: show stats such as average ranking on the hacks table.
- TODO: allow judges to enter a custom table number on the judge review table.