
What did you just say ?
A Slack integration to show quotes
Make friends, tell nonsense and take note of what made you laugh.
$> mkdir quotes
$> cd quotes/
$> mkdir random_topic
$> cd random_topic
$> echo "Insert quote here" > myfirstquote.quote
You can create multiple folders in quote folder, so if you want to integrate Quoter into multiple Slack, it will be easier.
If you use Docker :
$> docker pull hug33k/quoter
$> docker run -d --name Quoter -p YOUR_PORT:80 -v /path/to/my/quotes:/app/quotes hug33k/quoter
If you use docker-compose.yml:
version: "3"
services:
quoter:
container_name: Quoter
image: hug33k/quoter
ports:
- YOUR_PORT:80
volumes:
- /path/to/my/quotes:/app/quotes
restart: always
If you don't have or hate Docker :
$> export QUOTER_PORT=YOUR_PORT
$> git clone [email protected]:hug33k/Quoter.git
$> cd Quoter/
$> pip install -r requirements.txt
$> python server.py
Create New AppSlash Commands section and add your command?folder=FOLDER_NAME at the end of your URLOAuth & Permissions, click on Install AppNow you can use the command you set in previous step and have fun !
list will list the available quotesshow <QUOTE_NAME> will show the selected quotehelp will show you the help messageContent type
Image
Digest
Size
78.6 MB
Last updated
over 8 years ago
docker pull hug33k/quoter