hackathon project at sgu
1.0.0
該專案是使用MERN堆疊建構的:
在設定專案之前,請確保您的電腦上安裝了以下軟體:
請依照以下步驟設定並執行專案。
如果您尚未複製儲存庫,可以使用以下命令進行複製:
git clone https://github.com/altamsh04/hackathon-project-at-sgu.git
cd hackathon-project-at-sgu
導航至專案目錄並使用 npm 或 Yarn 安裝所需的依賴項:
# Using npm
npm install
此命令將安裝package.json
檔案中列出的所有必要的套件。
若要啟動開發伺服器,請使用下列命令:
# 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
:這是 React 應用程式的入口點。src/App.jsx
:包含應用程式主佈局的根元件。vite.config.js
:Vite 的配置文件,您可以在其中自訂建置和開發設定。index.html
:Vite 用於為您的 React 應用程式提供服務的 HTML 範本。