Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 942 Bytes

README.md

File metadata and controls

43 lines (34 loc) · 942 Bytes

Quasar Twitter Clone (quasar-twitter-clone)

Twitter Clone with Quasar Framework and Firebase

Install the dependencies

npm install

Set your Firebase App Configuration

// src/boot/firebase.js

const firebaseConfig = {
  apiKey: 'yourApiKey',
  authDomain: 'yourAppName.firebaseapp.com',
  databaseURL: 'https://your-app-name-default-rtdb.firebaseio.com',
  projectId: 'your-app-id',
  storageBucket: 'your-app-id.appspot.com',
  messagingSenderId: 'yourMessagingSenderId',
  appId: 'yourAppId'
}

Change the Collection name if needed (default is 'tweets')

// src/components/TweetList.vue
db.collection('tweets')

Start the app in development mode (hot-code reloading, error reporting, etc.)

quasar dev

Build the app for production

quasar build

Customize the configuration

See Configuring quasar.conf.js.