Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 548 Bytes

README.md

File metadata and controls

54 lines (45 loc) · 548 Bytes

API-Tutorial

nodenv install
npm i -g ts-node
  1. Hello World インストール
cd samples/hello-world
yarn

起動

yarn start
  1. CRUD API インストール
cd samples/method
yarn

DB起動

// samplesディレクトリに移動
cd ../
docker-compose up -d

起動

cd samples/method
yarn migration
yarn start

マイグレーションファイルを作成する場合

yarn make:migration

マイグレーションの実行

yarn migration

ロールバック

yarn rollback