The contact app allows you to add your contacts to the database, delete them and update them if you wish.
git clone https://github.com/gorkemuveyk/contact-app.git
The contact app uses firebase. so create project for firebase called contacts and specify your project information, for example api key in config/firebase.js file. Don't forget to create a collection called contacts
const firebaseConfig = {
apiKey: import.meta.env.VITE_API_FIREBASE_API_KEY,
authDomain: import.meta.env.VITE_API_FIREBASE_AUTH_DOMAIN,
projectId: import.meta.env.VITE_API_FIREBASE_PROJECT_ID,
storageBucket: import.meta.env.VITE_API_FIREBASE_STORAGE_BUCKET,
messagingSenderId: import.meta.env.VITE_API_FIREBASE_MESSAGING_SENDER_ID,
appId: import.meta.env.VITE_API_FIREBASE_APP_ID,
};
npm i
npm run dev