Axay Sagathiya
12/27/2022, 7:28 AMaxay@axay-Inspiron-3542:~/code/signoz$ sudo make dev-setup
[sudo] password for axay:
mkdir -p /var/lib/signoz
sqlite3 /var/lib/signoz/signoz.db "VACUUM";
/bin/sh: 1: sqlite3: not found
make: *** [Makefile:106: dev-setup] Error 127
Got this error as I don't have sqlite3 installed on my system. so, I want to avoid this for others.
May I add documentation to install sqlite3 externally or I should add a command to install sqlite3 in makefile?Pranay
12/27/2022, 7:33 AMPrashant Shahi
12/27/2022, 5:40 PMsqlite
on the machine to set it up locally:
sudo apt update
sudo apt install sqlite -y