This project showcases the data of our contributors, displaying information such as their name, location, bio, and social profiles.
This project was bootstrapped with Create React App.
Ensure you have Node.js installed on your machine. You can download it from here.
Clone the repository:
git clone https://github.com/Arijit-017/ISTE-Contribution-React
Navigate to the project directory:
cd ISTE-Contribution-React
Install the required dependencies:
npm install
Run the application locally:
npm start
This will start the app in development mode. Open http://localhost:3000 to view it in the browser.
The page will reload automatically if you make changes to the code.
Build for production: When you're ready to deploy the application for production, build an optimized version:
npm run build
This will create a build
folder with the production build.
You can deploy this application on platforms like GitHub Pages, Vercel, Netlify, or Firebase. Below are the basic steps:
GitHub Pages:
gh-pages
as a dev dependency:
npm install gh-pages --save-dev
package.json
:
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
homepage
field to package.json
:
"homepage": "https://your-username.github.io/repo-name"
npm run deploy
Vercel:
Netlify:
npm run build
build/
Firebase:
npm install -g firebase-tools
firebase init
npm run build
firebase deploy
This project is licensed under the MIT License - see the LICENSE file for details.
You can directly copy and paste this Markdown into your `README.md` file. Let me know if you need further edits!