From 902650ac00facfea4b6634c016bae1e8d3594d6e Mon Sep 17 00:00:00 2001 From: jeff Date: Mon, 31 Aug 2015 09:20:54 -0400 Subject: [PATCH] ammend docs and readme --- README.md | 5 +---- doc/setup.md | 33 --------------------------------- 2 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 doc/setup.md diff --git a/README.md b/README.md index be56466..98c47bf 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,9 @@ After you [built and installed the daemon](doc/build.md) and [set up your databa # set up the workspace srndv2 setup - # run the core daemon + # run the daemon srndv2 run - # run the worker threads - srndv2 worker - Then open http://127.0.0.1:18000/ukko.html in your browser. diff --git a/doc/setup.md b/doc/setup.md deleted file mode 100644 index d0d14d5..0000000 --- a/doc/setup.md +++ /dev/null @@ -1,33 +0,0 @@ - -Postgres on Debian: - - - # install - apt install postgresql postgresql-client - - -Setting up postgres (as root) - - # become postgres user - su postgres - # spawn postgres admin shell - psql - -You'll get a prompt, enter the following: - - CREATE ROLE srnd WITH LOGIN PASSWORD 'srndpassword'; - CREATE DATABASE srnd WITH ENCODING 'UTF8' OWNER srnd; - \q - -Change the username and password as desired. - -RabbitMQ on Debian: - - # install - apt install rabbitmq-server - -Copy the rabbitmq configs and restart rabbitmq - - # as root - cp ~/nntpchan/contrib/configs/rabbitmq/* /etc/rabbitmq/ - systemctl restart rabbitmq-server