https://github.com/techplexengineer/bionic-bob-slack-bot
https://bionic-bob.techplex.workers.dev/
https://github.com/techplexengineer/bionic-bob-slack-bot
Last synced: about 1 year ago
JSON representation
https://bionic-bob.techplex.workers.dev/
- Host: GitHub
- URL: https://github.com/techplexengineer/bionic-bob-slack-bot
- Owner: TechplexEngineer
- License: mit
- Created: 2022-06-25T02:16:49.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-12T20:45:54.000Z (about 1 year ago)
- Last Synced: 2025-02-12T21:33:44.416Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 224 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Bionic Bob Slack Bot
Slack bot whose goal is to:
- provide helpful links
- answer common questions
- Automate manual processes
This is based on the "Miniflare Example Project" and uses [Cloudflare Workers](https://workers.cloudflare.com/).
[Miniflare](https://github.com/cloudflare/miniflare) is used for for local development, [TypeScript](https://www.typescriptlang.org/), [esbuild](https://github.com/evanw/esbuild) for bundling, and [Jest](https://jestjs.io/) for testing, with [Miniflare's custom Jest environment](https://miniflare.dev/testing/jest).
```shell
# Install dependencies
$ npm install
# Start local development server with live reload
$ npm run dev
# Start remote development server using wrangler
$ npm run dev:remote
# Run tests
$ npm test
# Run type checking
$ npm run types:check
# Deploy using wrangler
$ npm run deploy
```