messengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscord
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
698 B
29 lines
698 B
// Initialize Firebase |
|
var firebase = require('firebase/app'); |
|
require('firebase/database'); |
|
require('firebase/auth'); |
|
|
|
// Firebug Config |
|
var config = { |
|
apiKey: "", |
|
authDomain: "", |
|
databaseURL: "", |
|
storageBucket: "" |
|
}; |
|
var fireRef = firebase.initializeApp(config); // Firebase Ref |
|
var FirebaseTokenGenerator = require('firebase-token-generator'); |
|
var auth0, lock; // Auth0 vars |
|
|
|
// Sencha App |
|
Ext.setGlyphFontFamily('FontAwesome'); |
|
Ext.application({ |
|
name: 'Rambox' |
|
|
|
,extend: 'Rambox.Application' |
|
|
|
,autoCreateViewport: 'Rambox.view.main.Main' |
|
}); |
|
|
|
require('electron').ipcRenderer.on('showAbout', function(event, message) { |
|
!Ext.cq1('about') ? Ext.create('Rambox.view.main.About') : ''; |
|
});
|
|
|