Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 944 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 944 Bytes

Firestore を使ったサンプルスクリプト

これは何?

  • PrahaChallenge の Firestore 課題回答用のリポジトリです

Setup

$ gh repo clone tsubasa1122/firestore-sample-script
$ cd firestore-sample-script
$ yarn

Scripts

ユーザーの課題のステータスを更新したい場合

$ npx dotenv -e .local.env -- ts-node src/scripts/updateParticipantTaskStatus.ts <UserId> <QuestionId>

ユーザーの課題ステータス一覧を見たい場合

$ npx dotenv -e .local.env -- ts-node src/scripts/getUsersQuestionList.ts --list <UserId1>,<UserId2>

課題を更新したい場合

$ npx dotenv -e .local.env -- ts-node src/scripts/updateQuestion.ts --id <QuestionId> --title <Title> --description <Description>

課題を削除したい場合

$ npx dotenv -e .local.env -- ts-node src/scripts/deleteQuestion.ts <QuestionId>