Skip to content

Robotics-Club-IIT-BHU/Website

Repository files navigation

Robotics Club Website

This repository serves as the home for Robotics Club website.


Setting up the project

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.

Fork this repository

First of all, click on the top-right corner of this repository to fork it.

Create a local clone of your fork

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

Run the server

Install the dependencies using

npm i

Then you can finally run the server using this command.

npm start

Formatting commands:

  1. View ESLINT errors
npm run lint
  1. Fix ESLINT errors
npm run lint:fix
  1. View PRETTIER errors
npm run format:check
  1. Fix PRETTIER errors
npm run format