Table of contents

Building an inhouse solution is hard.

https://docs.budibase.com/docs/sql-datasource

https://prometheus.io

Grafana.

https://github.com/SigNoz/signoz https://couchdb.apache.org

Budibase and other low-code platforms, and how they can clarify adoption of data.

Organizations want data.

JAMstack

Budibase

The command I used was

brew install colima
colima start
docker volume create budibase-data
docker run -d -t \
  --name=budibase \
  -p 10000:80 \
  -v budibase-data:/data \
  --restart unless-stopped \
  budibase/budibase:2.22.14

https://news.ycombinator.com/item?id=29242466 DuckDB As according to https://docs.budibase.com/docs/docker

Access using port 10,000

For appsmith

docker volume create appsmith-data
docker run -d -t \
  --name=appsmith \
  -p 15000:80 \
  -v appsmith-stacks:/appsmith-stacks \
  --restart unless-stopped \
  appsmith/appsmith-ce:v1.18

I also started a PostgreSQL

docker volume create pgdata
docker run -d -t \
  --name=postgres \
  -e POSTGRES_USER=postgres \
  -e POSTGRES_PASSWORD=dqLC3ehYKpRPHnqzHanK \
  -e PGDATA=/var/lib/postgresql/data \
  -v pgdata:/var/lib/postgresql/data \
  --restart unless-stopped \
  postgres:16.2-alpine3.19

Created OPEN LIBRARY table

CREATE TABLE open_library (
    type TEXT,
    key TEXT,
    revision TEXT,
    json TEXT,
    last_modfied TEXT
);

Connect to POSTGRESQL

psql -h localhost -p 5432 -d postgres

copy open library over

COPY open_library FROM '/Users/leozqi/Downloads/:w

LAMP model

Linux, Apache, MySQL, PHP / Perl / Python