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
/* | |
* Source: https://github.com/prisma/prisma/issues/2443#issuecomment-630679118 | |
* Client typings is generated with the cli commands below: | |
* | |
* prisma generate --schema prisma/schema1.prisma | |
* prisma generate --schema prisma/schema2.prisma | |
*/ | |
import { PrismaClient as PrismaClient1 } from '../prisma/client1' | |
import { PrismaClient as PrismaClient2 } from '../prisma/client2' |
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
import React from 'react'; | |
import { Meta } from '@storybook/react'; | |
import Component from './ImageIcon'; | |
export default { | |
title: 'components/ImageIcon/ImageIcon', | |
component: Component, | |
} as Meta; | |
const Template = (props: React.ComponentProps<typeof Component>) => <Component {...props} />; |
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
import { ICache } from './types'; | |
import { MemoryClient } from './memoryClient'; | |
import { RedisClient } from './redisClient'; | |
export class CacheClient implements ICache { | |
private client: ICache; | |
constructor({ redisUrl }: { redisUrl?: string }) { | |
if (redisUrl) { | |
this.client = new RedisClient({ redisUrl }); |
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
// Demo of creating upload urls to AWS S3. | |
// See github.com/tomfa/nextjs-s3-upload for a complete app | |
import { | |
S3Client, | |
PutObjectCommand, | |
} from "@aws-sdk/client-s3"; | |
import { getSignedUrl } from "@aws-sdk/s3-request-presigner"; | |
const s3 = new S3Client({ |
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
type ApplicationLog = { | |
level: 'debug' | 'info' | 'warning' | 'danger' | 'critical', | |
message: string, | |
createdAt: number, | |
userId?: string, | |
// a business metric, e.g. SIGNUP | |
action?: string, | |
monetaryValue?: number, | |
requestId?: string, |
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
# 1. install dependencies | |
# 2. Set service account json in code | |
# or with env var "SA_ACCOUNT" | |
# 3. Run this file to import test data: | |
# "python3 bigquery_import.py" | |
import os | |
import json | |
from google.cloud import bigquery |
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
# place this file in .github/workflows/ folder in repo | |
# | |
# This will run tests on push to master branch, then | |
# deploy if test succeeds | |
# | |
# This is controlled by the job "deploy" value "needs: test" | |
name: Deploy | |
on: |
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
name: Release SDK | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
lint: |
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
install() { | |
if test -f "package.json"; then | |
if test -f "package-lock.json"; then | |
npm install | |
elif test -f "yarn.lock"; then | |
yarn | |
else | |
echo "warning: no lock file" | |
yarn | |
fi |
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
import { useQueryState } from 'next-usequerystate'; | |
import { useEffect } from 'react'; | |
const defaultData = { | |
name: 'Robert Paulsen', | |
age: 37, | |
} | |
const parse = (query) => { | |
try { | |
const json = JSON.parse(String(query)); | |
return { |