Skip to content

Commit

Permalink
moved all setup related actions here. Much cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
SolarFloss committed Aug 2, 2017
1 parent 2ac75af commit eae8f45
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/scripts/setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const parser = require('rss-parser');
const howler = require('howler');
const fs = require('fs');
const http = require('http');
const request = require('request');
const admin = require('firebase-admin');


angular.module('main',['ngAnimate','rzModule']);


//Google Firebase Setup
var serviceAccount = require("../service-key.json");
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: "https://reach-40be2.firebaseio.com"
});

0 comments on commit eae8f45

Please sign in to comment.