- Install NodeJS & NPM on the system, can refer this website for Windows/Mac, on Ubuntu\Debian
sudo apt-get install nodejs npm
and on Arch based distributuions withsudo pacman -S nodejs npm
` - Go to the project directory with
cd iste-2k23
and install the required dependencies with
npm install
- Run the development server with
npm start
.
├── package.json
├── package-lock.json
├── public
│ ├── cards.css
│ ├── events.css
│ ├── home.css
│ ├── index.html
│ ├── navbar.css
│ ├── particles.js
│ └── styles.css
├── README.md
├── src
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── components
│ │ ├── animatedCursor.jsx
│ │ ├── AnimatedRoutes.jsx
│ │ ├── BackgroundParticles.jsx
│ │ ├── ChatBot.jsx
│ │ ├── config
│ │ │ └── particles_config.js
│ │ ├── DarkMode
│ │ │ ├── DarkMode.css
│ │ │ ├── DarkMode.js
│ │ │ ├── Moon.svg
│ │ │ └── Sun.svg
│ │ ├── GalleryPageWrapper.jsx
│ │ ├── graphicAnimation.jsx
│ │ ├── homePageComponents
│ │ │ ├── aboutUs.jsx
│ │ │ ├── domains.jsx
│ │ │ ├── eventBrief.jsx
│ │ │ └── homeIntro.jsx
│ │ ├── ImageGallery.jsx
│ │ ├── navbar.jsx
│ │ └── particlesBackground.jsx
│ ├── CSS
│ │ └── ChatBot.css
│ ├── data
│ │ └── galleryData.js
│ ├── index.css
│ ├── index.js
│ ├── logo.svg
│ ├── pages
│ │ ├── blogPage.jsx
│ │ ├── eventsPage.jsx
│ │ ├── home.jsx
│ │ ├── ImageGalleryPage.jsx
│ │ └── membersPage.jsx
│ ├── reportWebVitals.js
│ ├── setupTests.js
│ └── static
│ ├── images
│ │ ├── events-background.jpg
│ │ ├── hult1.JPG
│ │ ├── iste-logo-blue.png
│ │ └── teamiste-jan2k23.webp
│ └── svgs
│ ├── design-animation.json
│ ├── finance-animation.json
│ ├── intro-animation-light.json
│ ├── istelogo.svg
│ ├── pr-animation.json
│ ├── resourceAnimation.json
│ └── tech-animation.json
└── yarn-error.log
-
Fork the project to your github.
-
Clone the Repository.
-
Create a seperate
feature
branch bygit checkout -b 'featureBranch'
-
Commit your changes by
git commit -m 'amazingfeature'
-
Push the changes by
git push origin featureBranch
-
Wait for reviews :")