Skip to content

Commit

Permalink
LinkedIn Authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
Ojas-Arora committed Jul 25, 2024
2 parents e01695f + c1fff34 commit b6ffd78
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
18 changes: 18 additions & 0 deletions LEARN.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ UniCollab is not just a platform; it's a community-driven ecosystem that empower

## Getting Started

### With docker
- For run the App write the following command
```bash
docker build -t your-image-name .
docker push your-image-name

```
- For Deploy the App Locally with kubernetes

1. Add the image name in deployment.yaml

2. write the following command to run the app
```bash

kubectl apply -f deployment.yaml
kubectl apply -f service.yaml

```
### 1. Clone the Repository

First, clone the UniCollab repository to your local machine:
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Firebase/Firebase.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ export {
};

export { db, analytics, firebaseApp as app };
export default firebaseApp;
export default firebaseApp;
6 changes: 4 additions & 2 deletions src/Components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ const scrollToTop = () => {
};

const Footer = () => {
const today = new Date();
const year = today.getFullYear();
return (
<div className='footer'>
<div className='footer-container footer-container-md'>
Expand Down Expand Up @@ -72,12 +74,12 @@ const Footer = () => {

<div className='footer-bottom'>
<div className='footer-bottom-link'>
&copy; 2024 UniCollab. All rights reserved.
&copy; {year} UniCollab. All rights reserved.
</div>
</div>

</div>
);
}

export default Footer;
export default Footer;
2 changes: 1 addition & 1 deletion src/Components/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
createUserWithEmailAndPassword,
RecaptchaVerifier,
signInWithPhoneNumber,
TwitterAuthProvider
TwitterAuthProvider,
} from 'firebase/auth';

const LogIn = () => {
Expand Down

0 comments on commit b6ffd78

Please sign in to comment.