github.com/sharovik/devbot@v1.0.1-0.20240308094637-4a0387c40516/documentation/prerequisites.md (about) 1 # Prerequisites 2 3 ## Enable CGO 4 Because here we use the CGO package for *sqlite* driver, please enable the environment variable `CGO_ENABLED=1` and have a `gcc` compile present within your path. 5 6 ## Slack token generation 7 Please [see details here](slack.md). 8 9 ## Install sqlite3 10 If you want to use the sqlite as main database, please install the sqlite extension to your system. 11 You can use this command for ubuntu 12 ``` 13 sudo apt-get install sqlite3 libsqlite3-dev 14 ``` 15 Or by **using brew** 16 ``` 17 brew install sqlite 18 ``` 19 Or for **Centos** 20 ``` 21 sudo yum install sqlite 22 ```