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/building.md

53 lines
1.1 KiB
Markdown
Raw Normal View History

2016-06-04 20:16:55 +05:00
Building the NNTPChan server
============================
2016-06-04 20:18:14 +05:00
This document will help you setup the NNTPChan server from the source code.
2015-08-04 20:10:30 +05:00
2016-06-04 20:16:08 +05:00
##Requirements
2015-08-04 20:10:30 +05:00
2016-06-04 20:16:08 +05:00
NNTPChan can run on the following operating systems:
2015-08-04 20:10:30 +05:00
2016-06-04 20:16:08 +05:00
* Linux
* FreeBSD
Dependancies:
* libsodium _1.0_ or _higher_
2015-08-04 20:10:30 +05:00
* imagemagick
2016-04-03 17:17:36 +05:00
* ffmpeg
2015-09-09 07:32:28 +05:00
* sox
2016-06-04 20:16:08 +05:00
* go _1.6_ or _higher_ **with redis driver**
* go _1.3_ or _higher_ **without redis driver**
2016-03-09 18:40:18 +05:00
2016-06-04 20:27:39 +05:00
##Debian instructions
2015-08-04 20:10:30 +05:00
2016-06-04 20:31:24 +05:00
These are installation instructions for Debian.
2016-06-04 20:28:24 +05:00
2016-06-04 20:27:39 +05:00
###Install Go
2015-10-21 19:17:40 +05:00
2016-06-04 20:27:39 +05:00
Install the Go programming language version _1.6_ from the [Go website](https://golang.org/dl/).
###Install the dependancies
2015-10-21 19:17:40 +05:00
2015-10-21 19:45:49 +05:00
sudo apt-get update
2016-04-03 17:17:36 +05:00
sudo apt-get --no-install-recommends install imagemagick libsodium-dev ffmpeg sox build-essential git ca-certificates
2015-10-21 19:17:40 +05:00
2016-06-04 20:27:39 +05:00
###Get the NNTPChan source
2015-10-21 19:17:40 +05:00
2016-06-04 20:27:39 +05:00
git clone https://github.com/majestrate/nntpchan --depth=1
2015-10-21 19:45:49 +05:00
cd nntpchan
2016-06-04 20:27:39 +05:00
###Now compile!
If you want to compile with Redis support (recommended - Redis is easy to use) then run:
2015-10-21 19:45:49 +05:00
./build.sh
2015-08-04 20:10:30 +05:00
2016-06-04 20:32:57 +05:00
If you want to build without support for Redis then build with the `--no-redis` flag:
2016-03-09 18:40:18 +05:00
./build.sh --no-redis
2016-06-04 20:34:43 +05:00
##Now let's setup NNTPChan
2016-06-04 20:35:00 +05:00
Check out [Configuring NNTPChan](config.md).