Skip to content

Made with React and Firebase by following Clever Programmer tutorial.

Notifications You must be signed in to change notification settings

Landon345/Instagram-Clone

Repository files navigation

Instagram Clone made with React

hostedSite

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:
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 };
  1. Configure your firebase database
  2. run npm start in terminal

About

Made with React and Firebase by following Clever Programmer tutorial.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published