ammend docs, update board.mustache
This commit is contained in:
parent
c08fb8b2fd
commit
6e4c38bc95
10
README.md
10
README.md
@ -9,15 +9,19 @@ This repository contains resources used by the core daemon which is located [her
|
||||
After you [built and installed the daemon](doc/build.md) and [set up your database](doc/database.md), clone this repository and start up the daemon
|
||||
|
||||
# clone it
|
||||
git clone https://github.com/majestrate/nntpchan
|
||||
cd nntpchan
|
||||
git clone https://github.com/majestrate/nntpchan ~/nntpchan
|
||||
cd ~/nntpchan
|
||||
|
||||
# set up the workspace
|
||||
srndv2 setup
|
||||
|
||||
# run the daemon
|
||||
# run the core daemon
|
||||
srndv2 run
|
||||
|
||||
# run the worker threads
|
||||
srndv2 worker
|
||||
|
||||
|
||||
Then open http://127.0.0.1:18000/ukko.html in your browser.
|
||||
|
||||
*PLEASE* report any bugs you find while setting up or building [(here)](https://github.com/majestrate/nntpchan/issues) so that the problems get fixed (^:
|
||||
|
@ -32,11 +32,11 @@
|
||||
<div class="thread" id="thread_{{OP.PostHash}}">
|
||||
<div clsss="thread_header">
|
||||
</div>
|
||||
{{{OP.RenderPost}}}
|
||||
{{#Replies}}
|
||||
{{{RenderPost}}}
|
||||
{{{OP.Truncate.RenderPost}}}
|
||||
{{#Truncate.Replies}}
|
||||
{{{Truncate.RenderPost}}}
|
||||
<br />
|
||||
{{/Replies}}
|
||||
{{/Truncate.Replies}}
|
||||
</div>
|
||||
<br/>
|
||||
<hr/>
|
||||
|
@ -7,6 +7,7 @@
|
||||
* go 1.4 or higher
|
||||
* libsodium 1.0 or higher
|
||||
* imagemagick
|
||||
* RabbitMQ
|
||||
|
||||
## debian ##
|
||||
|
||||
@ -43,11 +44,10 @@ We'll also need to install some dependancies that come with debian:
|
||||
|
||||
# as root
|
||||
|
||||
apt-get update
|
||||
apt-get install libmagickwand-dev libsodium-dev
|
||||
apt update
|
||||
apt install imagemagick libsodium-dev
|
||||
|
||||
|
||||
Now you can build the daemon:
|
||||
Now build the daemon:
|
||||
|
||||
go get github.com/majestrate/srndv2
|
||||
go install github.com/majestrate/srndv2
|
||||
|
33
doc/setup.md
Normal file
33
doc/setup.md
Normal file
@ -0,0 +1,33 @@
|
||||
|
||||
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
|
Reference in New Issue
Block a user