This repository contains the source code for the Google Developer Groups (GDG) USAR website. https://www.sanity.io/plugins/next-sanity
GDG_USAR_website/
├── src/ # Source files
│ ├── components/ # React components
│ ├── pages/ # Page components
│ ├── styles/ # CSS/SCSS files
│ └── assets/ # Images, fonts, etc.
├── public/ # Static files
├── config/ # Configuration files
├── .env # Environment variables
└── README.md # Documentation
- Node.js (v14.0.0 or higher)
- npm (v6.0.0 or higher)
- Git
- Clone the repository:
git clone https://github.com/yourusername/GDG_USAR_website.git
cd GDG_USAR_website
- Install dependencies:
npm install --legacy-peer-deps
- Start development server:
npm run dev
- Always create new branches for features/fixes
- Follow commit message conventions
- Keep dependencies updated
- Run tests before pushing code
package.json
: Contains project dependencies and scripts.env
: Environment variables (don't commit this file).gitignore
: Lists files/folders to ignore in version controlsrc/index.js
: Application entry pointsrc/App.js
: Main application componentconfig/webpack.config.js
: Webpack configuration
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request
This project is licensed under the MIT License.