From b776bf5b091fdacf05744c7aef1709933c18db14 Mon Sep 17 00:00:00 2001 From: Axay Sagathiya Date: Wed, 4 Jan 2023 22:02:48 +0530 Subject: [PATCH] Add Docs to install SQLite3 (#1924) * add commands to install sqlite3 in Makefile. * Add code to check if it's running on Linux System. * Revert "Add code to check if its running on Linux" This reverts commit 552cfb08c956cb7511ae60f4d82fd475507561d7. * Revert "add commands to install sqlite3 in Makefi" This reverts commit 781c23d12d0bc309bdee6812c2d8b2488cec4972. * Add Docuentation to install SQLite3. Co-authored-by: Pranay Prateek Co-authored-by: Vishal Sharma Co-authored-by: Prashant Shahi Co-authored-by: Srikanth Chekuri --- CONTRIBUTING.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5fd438eda0..e5c2a61bf1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -215,9 +215,26 @@ Please ping us in the [`#contributing`](https://signoz-community.slack.com/archi # 4. Contribute to Backend (Query-Service) 🌑 -[**https://github.com/SigNoz/signoz/tree/develop/pkg/query-service**](https://github.com/SigNoz/signoz/tree/develop/pkg/query-service) +**Need to Update: [https://github.com/SigNoz/signoz/tree/develop/pkg/query-service](https://github.com/SigNoz/signoz/tree/develop/pkg/query-service)** -## 4.1 To run ClickHouse setup (recommended for local development) +## 4.1 Prerequisites + +### 4.1.1 Install SQLite3 + +- Run `sqlite3` command to check if you already have SQLite3 installed on your machine. + +- If not installed already, Install using below command + - on Linux + - on Debian / Ubuntu + ``` + sudo apt install sqlite3 + ``` + - on CentOS / Fedora / RedHat + ``` + sudo yum install sqlite3 + ``` + +## 4.2 To run ClickHouse setup (recommended for local development) - Clone the SigNoz repository and cd into signoz directory, ```