Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

qazsato/melt-api

Repository files navigation

Melt API

Melt で利用するための REST API 。

API Gateway + Lambda (Serverless Framework) の構成で、ランタイムは Go。

ドキュメント

API 仕様書

ディレクトリ構成

.
├── config # 各環境の設定ファイル
│   ├── local.yml
│   ├── development.yml
│   └── production.yml
├── functions # Lambda関数
│   ├── images
│   │   ├── function.yml # serverless.ymlの分割ファイル
│   │   └── handler.ts # Lambda関数の実行ファイル
│   └── ...
├── package.json
└── serverless.yml

セットアップ

npm install

ローカル起動

npm run dev