An Open-source Web3 Commenting and Chat tool with Ethereum Login & Wallets
- Comment Demo: https://developers.pando.im/demo/comment-demo.html
- Chat Demo: https://developers.pando.im/demo/chat-demo.html
Please visit Pando Developers Console to create your own Talkee sites.
Please visit this page to integrate Talkee into your site.
- π» One-Click Installation
- π€ Ethereum Login by Metamask or WalletConnect Wallets
- π¬ Instant Chat APIs (UI in the process)
- π Reply, Like, Share.
- π Content on the Blockchain (Arweave right now, IPFS and others in the process)
- π° Token AirDrop On-Demand
- π Notifications
- π Comment/ChatRoom Requirements: crypto requirement for people access your comment threads or chat room
- π« Anti-Spam Integration & Moderation tools
- π§π»βπΌ User Profile and Reputation
- π€ Transfer crypto to other users
- π₯ Import Comments from Disqus, Commento, etc
- π€ Export Comments
git clone https://github.com/pandodao/talkee.git
cd talkee
go buildYou need to have a running postgresql database, a keystore file from Mixin Developers.
To enable "Content on the Blockchain" feature, you also need an arweave wallet file from Arweave and put it under keystores/wallet.json of working directory.
Create a config file config.yaml in the working directory.
# database config
db:
driver: "postgres"
datasource: "user=foobar dbname=talkee host=localhost password=foobar sslmode=disable"
# auth config
auth:
# a random string to generate jwt token
jwt_secret: "112233"
# please get it from https://developers.mixin.one/dashboard
mixin_client_secret: ".."
# optional, not implemented yet
aws:
key: ""
secret: ""
region: ""
bucket: ""
# optional, not implemented yet
sys:
attachment_base: "http://.."run migrate database
./talkee migrate uprun ./talkee help to see full commands
run workers
./talkee -f YOUR_KEYSTORE_FILE workerrun websocket server
./talkee -f YOUR_KEYSTORE_FILE wss [port] run httpd server
./talkee -f YOUR_KEYSTORE_FILE httpd [port] build image
docker build -t talkee:latest .create docker-compose.yml
version: "3.4"
x-volumes: &default-volumes
- "./keystores:/app/keystores"
- "./config.yaml:/app/config.yaml"
services:
api:
image: talkee:latest
entrypoint: ["/app/talkee", "--file","YOUR_KEYSTORE_FILE", "httpd", "80"]
ports:
- "8080:80"
volumes: *default-volumes
wss:
image: talkee:latest
entrypoint: ["/app/talkee", "--file","YOUR_KEYSTORE_FILE", "wss", "80"]
ports:
- "8081:80"
worker:
image: talkee:latest
entrypoint: ["/app/talkee", "--file","YOUR_KEYSTORE_FILE", "worker", "80"]
ports:
- "8090:80"run via docker-compose
docker-compose up -d run database migration
docker run --rm -ti -v [YOUR_CONFIG_FILE]:/app/config.yaml talkee:latest /app/talkee migrate