This file contains 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
{-# LANGUAGE OverloadedStrings #-} | |
import Network.Wai | |
import Network.Wai.Handler.Warp | |
import Network.HTTP.Types (status200) | |
import Blaze.ByteString.Builder (copyByteString) | |
import Data.Monoid | |
main = do | |
let port = 8080 |
This file contains 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
const functions = require('@google-cloud/functions-framework'); | |
const { Storage } = require('@google-cloud/storage'); | |
const { BigQuery } = require('@google-cloud/bigquery'); | |
const path = require('path'); | |
const PROJECT_ID = 'YOUR_GOOGLE_PROJECT_ID'; | |
const BUCKET_NAME = 'YOUR_GCS_BUCKET_FOR_STRIPE'; | |
const DATASET_LIVE = 'YOUR_BIGQUERY_DATASET_FOR_LIVE_DATA'; | |
const DATASET_TEST = 'YOUR_BIGQUERY_DATASET_FOR_TEST_DATA'; |
This file contains 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
{ | |
"dependencies": { | |
"@google-cloud/functions-framework": "^3.0.0", | |
"@google-cloud/bigquery": "^7.8.0", | |
"@google-cloud/storage": "^7.11.3" | |
} | |
} |
OlderNewer