tm-donation/build
配下にのファイルたちを s3 にアップロード- バケット/index.html になるように
-
nodejs と yarn が必要
-
このリポジトリをクローンする
-
以下を実行
tm-donation > yarn
tm-donation > yarn build
tm-donation/build
配下にできたファイルたちを s3 にアップロード- バケット/index.html になるように
- response
interface response {
result: {
error: boolean;
message: string;
};
body: [
{
name: string;
amount: number;
comment: string;
},
];
}
- request body
interface requset {
name: string;
amount: number;
email: string;
comment: string;
}
- response
interface response {
result: {
error: boolean;
message: string;
};
}