A simple real-time chat app built with Vite, Firebase, and React.
Follow these steps to get Chatzy up and running on your local machine.
git clone https://github.com/vencordthemer/chatzy.git
cd chatzynpm installChatzy uses Firebase for authentication and real-time data via Firestore.
- Copy the Firebase config and replace the placeholder in
src/firebase-config.ts:
const firebaseConfig = {
apiKey: "your-api-key",
authDomain: "your-project-id.firebaseapp.com",
projectId: "your-project-id",
storageBucket: "your-project-id.appspot.com",
messagingSenderId: "your-messaging-sender-id",
appId: "your-app-id"
};npm run devThen visit http://localhost:5173 in your browser to start chatting!
- Vite — Lightning-fast frontend tooling
- React — UI Library
- Firebase — Auth & Firestore for backend
- Styled Components
Pull requests are welcome! Feel free to fork this project, submit issues, or suggest new features.
This project is open source and available under the MIT License.