hackathon project at sgu
1.0.0
This project is built using the MERN stack:
Before setting up the project, ensure that you have the following software installed on your machine:
Follow the steps below to set up and run the project.
If you haven't cloned the repository yet, you can do so with the following command:
git clone https://github.com/altamsh04/hackathon-project-at-sgu.git
cd hackathon-project-at-sgu
Navigate to the project directory and install the required dependencies using npm or Yarn:
# Using npm
npm install
This command installs all the necessary packages listed in the package.json
file.
To start the development server, use the following command:
# Using npm
npm run dev
hackathon-project-at-sgu/
├── public/ # Static assets like images and icons
├── server/ # Server backend
├── src/
│ ├── assets/ # Local image files, fonts, etc.
│ ├── components/ # Reusable React components
│ ├── pages/ # Page-level components or views
│ ├── App.jsx # Main application component
│ ├── main.jsx # Entry point for the React app
│ └── index.css # Global styles
├── index.html # Main HTML template
├── package.json # Project dependencies and scripts
├── vite.config.js # Vite configuration file
└── README.md # Project documentation
src/main.jsx
: This is the entry point for your React application.src/App.jsx
: The root component that contains the application's main layout.vite.config.js
: Configuration file for Vite, where you can customize build and development settings.index.html
: The HTML template used by Vite to serve your React application.