Welcome to the GHW Schedule in IST Website Repository.
This is a website by the BIO-S Community to help the participants of the MLH GHW Hackathon to keep track of the schedule of the event in IST.
To check the progress and design of the webiste, do check out the wiki page of this repository. It contains all the information about the website. It also contains the design of the website.
- Fork the repository.
- Clone the repository using
git clone
command in your terminal. - Run
npm install
to install all the dependencies. - Run
npm run dev
to start the development server. - Create a new branch using
git checkout -b <branch_name>
. - Make changes in the code.
- Commit the changes using
git commit -m "<commit_message>"
. - Push the changes using
git push -u origin <branch_name>
. - Create a pull request.
You are done! Enjoy open-sourcing!
To change the schedule, you need to edit the src/data/ScheduleData.js
file. The file contains an array of objects. Each object represents a day of the event. The object contains the following properties:
dateDay
: The date & day of the event.events
: This is an array of objects of all the events happening on that day. Each object contains the following properties:time
: The time of the event.title
: The name of the event.link
: The link to the event.