This repository serves as the home for Robotics Club website.
Follow the following steps to setup this project.
Note - This project requires Nodejs(v.14.0+) and npm(v.6.4+), so make sure you have installed and updated them to their respective required versions before continuing.
First of all, click on the top-right corner of this repository to fork it.
Then, clone your forked repository using this command:
git clone https://github.com/YOUR-USERNAME/Website.git
Change your current directory to the repo's root.
cd Website
Install the dependencies using
npm i
Then you can finally run the server using this command.
npm start
- View ESLINT errors
npm run lint
- Fix ESLINT errors
npm run lint:fix
- View PRETTIER errors
npm run format:check
- Fix PRETTIER errors
npm run format