- View our website at ieeecssbnssce.
This repository contains the official website of IEEE Student Branch CS Society, NSS College of Engineering (NSSCE).
It serves as a central platform to showcase our activities, events, achievements, and initiatives that promote technology and innovation within the IEEE community at NSSCE.
- Information about the Society and it's activities.
- Event announcements and registration
- Gallery showcasing recent activities
- Contact and membership details
We welcome contributions!
To contribute, you first need to get the project running on your local machine.
- Node.js: Make sure you have a recent version of Node.js installed (v16 or higher is recommended). You can download it from nodejs.org.
- npm A package manager for Node.js. npm is included with Node.js.
-
Fork the Repository Click the "Fork" button at the top right of this page to create a copy of this repository in your own GitHub account.
-
Clone Your Fork Clone the repository from your account to your local machine. Replace
<Your-GitHub-Username>with your actual username.git clone https://github.com/IEECSSBCNSSCE/ieeecssbcnssce
-
Navigate to the Project Directory
cd ieeecssbcnssce -
Install Dependencies This command will install all the necessary packages for the project.
npm install
-
Run the Development Server Start the local React development server.
npm start
Your browser should automatically open to http://localhost:3000 to display the website. You can now start making changes!
We welcome and appreciate all contributions! Here is the general process for contributing to our project.
-
Find an Issue: Look for an existing issue to work on or create a new one to suggest a change or feature. Please discuss the change you wish to make via the issue before starting work.
-
Create a New Branch: Before making any changes, create a new branch from
main. Use a descriptive name for your branch.# Example branch names: # feature/add-events-page # fix/navbar-mobile-bug git checkout -b <your-branch-name>
-
Make Your Changes: Write your code and make the necessary changes.
-
Commit Your Changes: Commit your work with a clear and descriptive commit message.
git add . git commit -m "feat: Add the events page with initial layout"
-
Push to Your Fork: Push your branch to your forked repository on GitHub.
git push origin <your-branch-name>
-
Create a Pull Request (PR): Go to your forked repository on GitHub and click the "Compare & pull request" button. Create a PR to merge your branch into the
mainbranch of the original repository. -
Wait for Review: The project maintainers will review your PR. We may suggest some changes or improvements.
Thank you for your interest in contributing!