This adds link preview support tailored to Discor and Slack
Every bot has their own ideosynchracies and it we really want to nail this for a lot of platform we'll have to serve each of them their own versions. This is a first step which will get us serving something. It will be this same static content for all pages.
I've made some changes to the build scripts so that we can deploy the project with a single command npm run build but that means the backend dev cycle is pretty crappy
A) npm run buil and wait forever
B) know which commands to run when (eg: run build:backend if you're working on TS or npm run copy:views if you're working on views)
I need to investigate modern backend frameworks to see if we can migrate the project to something with a reasonable dev cycle.
This adds link preview support tailored to Discor and Slack
Every bot has their own ideosynchracies and it we really want to nail this for a lot of platform we'll have to serve each of them their own versions. This is a first step which will get us serving something. It will be this same static content for all pages.
I've made some changes to the build scripts so that we can deploy the project with a single command
npm run build
but that means the backend dev cycle is pretty crappyA)
npm run buil
and wait forever B) know which commands to run when (eg:run build:backend
if you're working on TS ornpm run copy:views
if you're working on views)I need to investigate modern backend frameworks to see if we can migrate the project to something with a reasonable dev cycle.