Skip to content

newrice/tm-donation

Repository files navigation

tm-donation

デプロイ

変更の必要がない場合

  • tm-donation/build配下にのファイルたちを s3 にアップロード
    • バケット/index.html になるように

ビルド

  • nodejs と yarn が必要

  • このリポジトリをクローンする

  • 以下を実行

tm-donation > yarn
tm-donation > yarn build
  • tm-donation/build配下にできたファイルたちを s3 にアップロード
    • バケット/index.html になるように

api 仕様

/donations

GET

  • response
interface response {
  result: {
    error: boolean;
    message: string;
  };
  body: [
    {
      name: string;
      amount: number;
      comment: string;
    },
  ];
}

POST

  • request body
interface requset {
  name: string;
  amount: number;
  email: string;
  comment: string;
}
  • response
interface response {
  result: {
    error: boolean;
    message: string;
  };
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published