I hereby claim:
- I am slvnperron on github.
- I am slvn (https://keybase.io/slvn) on keybase.
- I have a public key whose fingerprint is 8DD9 9A84 62BE 0FA9 06E6 CB74 7824 BCA4 9603 A72F
To claim this, I am signing this object:
// The Table we want to analyze | |
const Table: FromagesTable = FromagesTable | |
const TableName = 'FromagesTable' | |
// List of columns we want to analyze the unique values and count of | |
const columns: Array<keyof Awaited<ReturnType<Table['getRecord']>>> = [ | |
'alcools', | |
'familles', | |
'flaveurs', | |
'fromageries', |
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap'); | |
.bpw-layout { | |
font-family: 'Roboto', sans-serif !important; | |
} | |
.bpw-from-bot .bpw-chat-bubble .bpw-chat-bubble-content { | |
background-color: #ececec !important; | |
} |
.bpw-button, .bpw-button-alt { | |
height: unset; | |
min-height: 40px; | |
} |
# Ubuntu 18.04 | |
# Step 1. Installing Docker | |
# ------------------------- | |
# Reference: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04 | |
sudo apt update && \ | |
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y && \ | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && \ | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" && \ |
const chatOptions = { | |
hideWidget: true, | |
config: { | |
enableReset: true, | |
enableTranscriptDownload: true, | |
extraStylesheet: "/assets/chat.css" | |
} | |
}; | |
const params = { |
const _ = require('lodash') | |
/** | |
* This outgoing middleware will find the $"..." pattern in the ougoing text | |
* And transform those into suggestion chips in channel-web | |
* @example e.g. | |
* `What type of restaurant are you looking for? $“Asian” $”Mexican” $”American”` | |
*/ | |
const regex = /\$(“|'|"|”)([\w\s]+)(“|'|"|”)/g |
/** | |
* Description of the action goes here | |
* @param {String} params.name=value Description of the parameter goes here | |
* @param {Number} [params.age] Optional parameter | |
*/ | |
async function yourCustomAction(state, event, params) { | |
return state; | |
} | |
/** |
I hereby claim:
To claim this, I am signing this object:
misunderstand: | |
- I don't understand this. | |
done: | |
- 🎈 | |
- We're all done then :) | |
ask_gender: | |
- text: What is your gender? | |
quick_replies: |
New in version 0.1 but still undocumented is the ability to override the global botpress theme.
You'll need to migrate your bot to 0.1 (see the README for the migration guide) then create a new file at your bot's root directory called theme.scss
with this content inside.