https://github.com/chrisabdo/instagram-clone
https://github.com/chrisabdo/instagram-clone
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chrisabdo/instagram-clone
- Owner: ChrisAbdo
- Created: 2021-07-08T01:55:16.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-08T01:56:06.000Z (almost 4 years ago)
- Last Synced: 2025-02-15T10:13:20.677Z (4 months ago)
- Language: JavaScript
- Size: 645 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instagram Clone made with React
[hostedSite](https://instagram-clone-3b95e.web.app/)
### To make it run locally:
1. Add a firebase.js file in src folder
2. Import firebase from npm
3. Add code similar to this:```javascript
import firebase from "firebase";const firebaseApp = firebase.initializeApp({
apiKey: "your api key",
authDomain: "your auth domain",
databaseURL: "your database URL",
projectId: "your project ID",
storageBucket: "your storage bucket",
messagingSenderId: "your messaging SenderId",
appId: "your app Id",
measurementId: "your measurement ID",
});const db = firebaseApp.firestore();
const auth = firebase.auth();
const storage = firebase.storage();export { db, auth, storage };
```4. Configure your firebase database
5. run `npm start` in terminal