Skip to content

blocks-web3/t3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

T3プロジェクト

開発環境

DevContainerで構築する場合は以下。

git clone https://github.com/blocks-web3/t3.git

VSCodeでt3フォルダを開く

CTRL + SHIT + P -> Dev Containers: Rebuild and Reopen in Container

AWSコマンド

t3-node container から localstack へ dynamodb コマンド

  • list tables
aws --endpoint-url=http://dynamodb-local:8000 dynamodb list-tables
  • describe table
aws --endpoint-url=http://dynamodb-local:8000 dynamodb describe-table \
    --table-name quarter
  • delete table
aws --endpoint-url=http://dynamodb-local:8000 dynamodb delete-table \
    --table-name quarter
  • put item
aws --endpoint-url=http://dynamodb-local:8000 dynamodb put-item \
    --table-name quarter  \
    --item \
    '{"quarter":{"S":"2023Q1"},"propose_due_datetime":{"S":"2023-03-10"}}'
  • scan
aws --endpoint-url=http://dynamodb-local:8000 dynamodb scan \
    --table-name quarter
  • delete item
aws --endpoint-url=http://dynamodb-local:8000 dynamodb delete-item \
    --table-name quarter \
    --key '{"quarter":{"S":"2023Q1"}}'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published