A University based community building app/website that enables students on campus to help each other and gain points, resulting in them being more recognized. Students can post their requests, and other people on campus can view their requests and attend to their requests, enabling students on campus to assist each other at times of need, while ensuring that they form valuable connections and networks in the process.
Here's an overview of the project structure:
The tech stack used here is:
Fork the repository to your GitHub account by clicking the "Fork" button at the top-right corner of this page. This will create a copy of the repository under your account.
Clone your forked repository to your local machine using Git. Replace your-username
with your GitHub username:
git clone https://github.com/your-username/campUS-Web.git
cd campUS-Web
Install project dependencies using npm (Node Package Manager):
npm install
Create a new branch for your contribution. Replace 'feature/your-feature-name' with a descriptive branch name related to your contribution:
To use your own Firebase project with campUS-Web, follow these steps to replace the Firebase configuration:
Create a Firebase Project:
Generate Firebase Configuration:
In the Firebase project settings, scroll down to the "Your apps" section.
Click on the "Web" app icon (</>) to add a web app to your project.
Register your app by giving it a nickname and enabling Firebase Hosting if needed.
After registering your app, you'll be provided with a Firebase configuration object that looks like this:
const firebaseConfig = {
apiKey: "YOUR_API_KEY",
authDomain: "YOUR_AUTH_DOMAIN",
projectId: "YOUR_PROJECT_ID",
storageBucket: "YOUR_STORAGE_BUCKET",
messagingSenderId: "YOUR_MESSAGING_SENDER_ID",
appId: "YOUR_APP_ID"
};
Replace Firebase Configuration:
src/firebase/firebase.js
file in your campUS-Web project.Example:
```javascript // src/firebase/firebase.js
import { initializeApp } from "firebase/app";
const firebaseConfig = { apiKey: "YOUR_API_KEY", authDomain: "YOUR_AUTH_DOMAIN", projectId: "YOUR_PROJECT_ID", storageBucket: "YOUR_STORAGE_BUCKET", messagingSenderId: "YOUR_MESSAGING_SENDER_ID", appId: "YOUR_APP_ID" };
const app = initializeApp(firebaseConfig);
export default app;
Make your changes or additions to the codebase. Test your changes to ensure they work as expected. To run the website on your localhost:
npm run dev
Commit your changes with a descriptive commit message:
git commit -m "Add your descriptive message here"
git push origin feature/your-feature-name
Visit the campUS-Web repository on GitHub. Click the "Compare & pull request" button next to your recently pushed branch. Follow the PR template and guidelines. Provide details about your changes. Submit the PR.
The maintainers will review your PR and may request changes or provide feedback. Once your PR is approved, it will be merged into the main repository.
Click here for the UI design and prototype of the project.
A responsive and aesthetically designed university-community building website called campUS(Web version).
Thank you for contributing to campUS-Web! Your contributions help make this project better for everyone. If you have any questions or need further assistance, please don't hesitate to reach out to us.