Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qazsato/melt-api
Serverless TS REST API. For Melt. ✏️
https://github.com/qazsato/melt-api
api-gateway golang lambda markdown serverless-framework
Last synced: 19 days ago
JSON representation
Serverless TS REST API. For Melt. ✏️
- Host: GitHub
- URL: https://github.com/qazsato/melt-api
- Owner: qazsato
- License: mit
- Created: 2018-02-04T12:13:54.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-02-07T13:33:37.000Z (12 months ago)
- Last Synced: 2024-06-21T09:55:18.151Z (7 months ago)
- Topics: api-gateway, golang, lambda, markdown, serverless-framework
- Language: TypeScript
- Homepage: https://qazsato.github.io/melt-api
- Size: 1.82 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Melt API
[Melt](https://github.com/qazsato/melt) で利用するための REST API 。
API Gateway + Lambda (Serverless Framework) の構成で、ランタイムは Go。
## ドキュメント
[API 仕様書](https://qazsato.github.io/melt-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
```