Hello Team, to configure the local setup to run qu...
# contributing
a
Hello Team, to configure the local setup to run query-service, I used`sudo make dev-setup` .
Copy code
axay@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?
p
I think @Prashant Shahi / @Ankit Nayan should be able to guide you better.
p
Hi @Axay Sagathiya 👋 You would want to install
sqlite
on the machine to set it up locally:
Copy code
sudo apt update
sudo apt install sqlite -y