Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.01 KB

README.md

File metadata and controls

39 lines (26 loc) · 1.01 KB

kuso-replier

Let's do useless things with the cutting edge technology of 2023.

Throw human-like replies to my posts using Notestock's webhook feature and OpenAI API.

dev

# start the dev server
deno task dev

Notestock can't deliver posts directly to webhooks running on your computer, so you probably need something to bridge. My recommendation is smee.io (it's like ngrok for webhooks).

# First, open smee.io in your browser and create a new channel.

# Install the smee client using npm. (only for the first time)
# npm install --global smee-client

# Then, run the smee client.
smee -u https://smee.io/abcdefg -p 8000

Finally, set the webhook URL to https://smee.io/abcdefg in Notestock's settings page.

deploy

Use deno deploy.

Almost the same as dev.