This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div id="app"> | |
| <input v-model="path" type="text" /> | |
| <FireProvider :config="firebaseConfig"> | |
| <FireQuery :path="path" :shouldListen="false"> | |
| <template v-slot:error="{ errorMsg }"> | |
| Error: {{ errorMsg }} | |
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| from firebase_token_generator import create_token | |
| from firebase import Firebase | |
| base_url = "https://sengo-fb3-prod.firebaseio.com/" | |
| deal_url = base_url + 'deals' | |
| active_deals_url = base_url + 'activeDeals/1/activeDeals' | |
| future_deals_url = base_url + 'activeDeals/1/futureDeals' | |
| inactive_deals_url = base_url + 'inactiveDeals/1/inactiveDeals' |
NewerOlder