Another file output, Format:
{
"State": ["lga1", "lga2", "..."]
}Data:
| import { App, initializeApp, cert, getApps } from 'firebase-admin/app'; | |
| import { getMessaging, Message } from 'firebase-admin/messaging'; | |
| import { ServiceAccount } from 'firebase-admin'; | |
| // Ensure gaxios (used by firebase-admin & google-auth-library) uses Node native fetch | |
| function patchGaxiosClass(Gaxios: any) { | |
| if (Gaxios && !(Gaxios.prototype as any).__fetchPatched) { | |
| (Gaxios.prototype as any).__fetchPatched = true; | |
| const originalRequest = Gaxios.prototype.request; | |
| Gaxios.prototype.request = function (opts: any) { |
| 541174573 |
| 342038736 |
| 465977973 |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Sign In with Firebase</title> | |
| <script src="https://www.gstatic.com/firebasejs/9.0.0/firebase-app-compat.js"></script> | |
| <script src="https://www.gstatic.com/firebasejs/9.0.0/firebase-auth-compat.js"></script> | |
| <script> | |
| // Your web app's Firebase configuration | |
| const firebaseConfig = { |
| WITH ForumMembersWithRanked AS ( | |
| WITH ForumMembersRanked AS ( | |
| SELECT | |
| "members".*, | |
| "user"."picture" AS "user.picture", | |
| ROW_NUMBER() OVER (PARTITION BY "members"."ForumId" ORDER BY "members"."id") AS row_num | |
| FROM | |
| "ForumMembers" AS "members" | |
| LEFT OUTER JOIN |
| name: Deploy Application | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest |
| @echo off | |
| title Sync with Main Branch | |
| echo Syncing with Main Branch... | |
| @REM accept batch file arguments | |
| set /p commitMessage=Commit Message: |
| from drf_yasg import openapi | |
| from drf_yasg.inspectors import SwaggerAutoSchema | |
| from drf_yasg.openapi import Schema | |
| class BaseSchema(SwaggerAutoSchema): | |
| def wrap_schema(self, schema): | |
| """Wrap schema with success, status, message, data and path fields | |
| :param schema: Schema to wrap |
Another file output, Format:
{
"State": ["lga1", "lga2", "..."]
}Data: