- Rushil Perera (Webmaster 2018/2019)
- Nevin WS Ganesan (Webmaster 2019/2020)
- Ryan Fleck (Webmaster 2020/2021)
- Loic Kandikandi (Webmaster 2021/2022, 2022/2023)
- Tamer Sherif (Webmaster 2017/2018)
- Rushil Perera (Webmaster 2018/2019)
- Nevin WS Ganesan (Webmaster 2019/2020)
- Loic Kandikandi (Webmaster 2021/2022, 2022/2023)
Requirements:
nvm
Node version manager for Windows, OSX, or Linuxyarn
package manager
Steps:
- Ensure your Node.js version is the latest build of node 10.x, this is extremely important as the builds will fail on later versions. Migration to a newer version of Node.js is in the works.
nvm install 10.23.1
nvm use 10.23.1
- Make sure that you have the Gatsby CLI program installed:
npm install --global gatsby-cli
- Run frontend (Gatsby.js) by running these commands:
cd frontend && yarn install && yarn start
- Run backend (Express.js) by running these commands:
cd backend && yarn install && yarn start
- Alternatively:
(cd frontend && yarn install && yarn start) & (cd backend && yarn install && yarn start)
- OR
sh run.sh