diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-20 21:35:02 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-26 23:33:45 -0800 |
commit | 534a42f619b8a7e3226ad7e67601bbaef6bd2f31 (patch) | |
tree | 3f2cd102cddd36f71cb3ec46a5adaf726132c640 | |
parent | 802bafc92160205a2a3068b7b780a6a5eeb331d9 (diff) | |
download | fatcat-534a42f619b8a7e3226ad7e67601bbaef6bd2f31.tar.gz fatcat-534a42f619b8a7e3226ad7e67601bbaef6bd2f31.zip |
add libsodium-dev as a dep
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | rust/README.md | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 19719230..b4556a05 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ unified_test: before_script: - cargo install diesel_cli --version 1.3.1 - apt update -qy - - apt install -y python3-dev python3-pip python3-wheel libsnappy-dev + - apt install -y python3-dev python3-pip python3-wheel libsnappy-dev libsodium-dev - pip3 install pipenv - pipenv --version script: diff --git a/rust/README.md b/rust/README.md index 2bf86d3c..ddde9b80 100644 --- a/rust/README.md +++ b/rust/README.md @@ -7,6 +7,7 @@ Rust implementation of fatcat API server (`fatcatd`). - diesel (`cargo install diesel_cli`) - postgres (9.6+; targetting 11.1 for production) - postgres libs (debian: `sudo apt install libsqlite3-dev libpq-dev`) +- libsodium library and development headers (debian: `libsodium-dev`) Create a new postgres superuser. A regular postgres user and an existing database should also work (with up/down migrations), but it's easier to just |