A serverless, customizable comment system
- Serverless & Self-deployable
- Fully customizable, you decide
- 💾 Where to store data
- 💅 How the comments look like
- ⚡️ How you deploy this service
- 🔔️ How to get notified
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/murmur.moe@0/style.css"/>
<script defer src="https://cdn.jsdelivr.net/npm/murmur.moe@0/dist/murmur.umd.js"></script>
<div id="murmur" host="https://api.murmur.moe"></div>
Note: You can change the host
to use your owen backend.
Deploy to tencent cloud
STORE_PLUGIN=s3
STORE_END_POINT=https://cos.ap-hongkong.myqcloud.com
STORE_SECRET_ID=****
STORE_SECRET_KEY=****
## Choose a bucket
STORE_BUCKET=serverless-comment-1303103251
STORE_REGION=ap-hongkong
SERVERLESS_PLATFORM_VENDOR=tencent
# serverless.yml
component: http
name: serverless-comment-api
inputs:
src: ./
faas:
runtime: Nodejs12.16
framework: express
name: ${name}
apigw:
protocols:
- http
- https
cd backend
# Install serverless cli
npm i serverless -g
# Enter backend dir
cd backend
# Install dependencies
npm install --production
# Deploy to tencent scf
serverless deploy