From b6dd3fde195f2e0233cdf84d169dbeb349ca3ce0 Mon Sep 17 00:00:00 2001 From: classicalliu Date: Thu, 22 Nov 2018 15:29:35 +0800 Subject: [PATCH] Update README for sidekiq and redis infos. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 196472e..64498f6 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,11 @@ Now upgrade to work with CITA v0.20 If you just want to run this, just use [docker 🐳](https://docs.docker.com/install) -Remember to run `rails secret` to generate secret key and write in .env.local (read .env for more info) +Remember to run `rails secret` to generate secret key and write in `.env.local` (read `.env` for more info) +Remember to change your sidekiq username and password in `.env.local` ⚠️ IMPORTANT: your database data will save at docker/data +⚠️ IMPORTANT: your redis data will save at docker/redis App will run at http://localhost:8888 @@ -37,7 +39,7 @@ you can get more info from Makefile ## Packages - [postgresql](https://www.postgresql.org/) 9.4 and above -- install secp256k1 (see [secp256k1](https://github.com/bitcoin-core/secp256k1.git) for more info) +- install [secp256k1](https://github.com/bitcoin-core/secp256k1.git) ```shell $ cd re-birth/tmp && git clone https://github.com/bitcoin-core/secp256k1.git && cd secp256k1 && ./autogen.sh && ./configure --enable-module-recovery --enable-experimental --enable-module-ecdh && make && sudo make install && cd ../..