Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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. ✏️

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
```