This is the official site for hackTAMS! Feel free to look around and make a pull request to request changes.
To install, clone the repository and run yarn install
.
All the data is in the data
folder, sorted by years. Each data file will contain the following information:
{
"year": "YYYY",
"dates": "Month [Start Date]-[End Date]",
"participants": 2147483647,
"projects": 42,
"devpost": "Link to devpost",
"site": "Link to website",
"team": [
{
"name": "Name of team member to display",
"position": "Position of team member to display",
"link": "(optional) Link to site/github/linkedin/etc to go to when clicked on"
},
{
// team memeber 2
}
// etc
],
"sponsors": {
"t1": [
{
"name": "Name of sponsor -- this should correspond to the image name",
"website": "Link to the website of the sponsor",
"svg": "(optional) true as BOOLEAN value if the image is an svg (default is a png)"
}
// Other tier 1 sponsors
],
"tn": [], // where n is the tier number -- this is programmed to go down to tier 3 currently (see 2020.json)
// etc
"numbers": [
{
"name": "Name of expense",
"value": "Price of this expense"
}
// Other expenses
]
}
}
For images, place the images with the format first-last.jpg
in the folder specified by imageDb
in event.js
.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.