Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/doc/running.md

40 lines
856 B
Markdown
Raw Normal View History

2015-10-16 23:11:08 +05:00
## Running
After you have [built the daemon](build.md) and [configured the database](database.md) you can run the daemon.
2015-10-21 19:51:17 +05:00
check out the nntpchan repo and build the daemon if you already haven't
2015-10-16 23:11:08 +05:00
git clone https://github.com/majestrate/nntpchan
2015-10-21 19:51:17 +05:00
cd nntpchan
./build.sh
2015-10-16 23:11:08 +05:00
set up the daemon:
2015-10-21 19:51:17 +05:00
./srndv2 setup
2015-10-16 23:11:08 +05:00
generate admin keys, don't loose them.
2015-10-21 19:51:17 +05:00
./srndv2 tool keygen
2015-10-16 23:11:08 +05:00
add yourself as admin by adding your ``public key`` to the ``frontend`` section of ``srnd.ini``
...
[frontend]
enable=1
2015-10-16 23:17:16 +05:00
admin_key=yourpublickeygoeshere
2015-10-16 23:11:08 +05:00
... # leave the rest of the config values alone for now
run it:
2015-10-21 19:51:17 +05:00
./srndv2 run
2015-10-16 23:11:08 +05:00
Now open the browser up to http://127.0.0.1:18000/
To access the mod panel go to the [mod panel](http://127.0.0.1:18000/mod/) and use your ``private key`` to log in
2015-10-16 23:19:44 +05:00
Now read about [peering](feeds.md)