Remove mention of rapidjson from readme/docker files etc

pull/370/head
Michael 5 years ago
parent 3e741e4b07
commit 1b331ea6f7
No known key found for this signature in database
GPG Key ID: 2D51757B47E2434C

1
.gitignore vendored

@ -40,7 +40,6 @@ daemon.ini
lokinet-win32.exe
lokinet
lokinet.exe
rapidjson/
.gradle/

@ -11,9 +11,9 @@ build:linux:
- linux
stage: build
before_script:
- apk add --update g++ make cmake linux-headers libcap-dev rapidjson
- apk add --update g++ make cmake linux-headers libcap-dev
script:
- make
- make
artifacts:
paths:
- "lokinet"

@ -1,7 +1,7 @@
FROM debian:stable
RUN apt update && \
apt install -y build-essential cmake git libcap-dev curl rapidjson-dev ninja-build
apt install -y build-essential cmake git libcap-dev curl ninja-build
WORKDIR /src/

@ -2,7 +2,7 @@ FROM fedora:latest
RUN dnf update -y && \
dnf upgrade -y && \
dnf install -y cmake make git gcc gcc-c++ libcap-devel curl rapidjson-devel
dnf install -y cmake make git gcc gcc-c++ libcap-devel curl
WORKDIR /src/

@ -1,7 +1,7 @@
FROM debian:stable
RUN apt update && \
apt install -y build-essential cmake git libcap-dev curl rapidjson-dev python3-dev python3-setuptools libsodium-dev
apt install -y build-essential cmake git libcap-dev curl python3-dev python3-setuptools libsodium-dev
WORKDIR /src/
@ -9,4 +9,4 @@ COPY . /src/
RUN make -j 8 SHARED_LIB=ON JSONRPC=ON && make kubernetes-install
ENTRYPOINT [ "/usr/bin/python3", "-m", "pylokinet"]
ENTRYPOINT [ "/usr/bin/python3", "-m", "pylokinet"]

@ -1,7 +1,7 @@
FROM ubuntu:latest
RUN apt update && \
apt install -y build-essential cmake git libcap-dev curl rapidjson-dev ninja-build
apt install -y build-essential cmake git libcap-dev curl ninja-build
WORKDIR /src/

@ -15,14 +15,13 @@ Build requirements:
* GNU Make
* CMake
* C++ 17 capable C++ compiler
* rapidjson (if enabling jsonrpc server)
* gcovr (if generating test coverage with gcc)
### Linux
build:
$ sudo apt install build-essential cmake git libcap-dev wget rapidjson-dev
$ sudo apt install build-essential cmake git libcap-dev wget
$ git clone https://github.com/loki-project/loki-network
$ cd loki-network
$ make -j8
@ -49,7 +48,7 @@ install (root):
build (where `$ARCH` is your platform - `i686` or `x86_64`):
$ pacman -Sy base-devel mingw-w64-$ARCH-toolchain git libtool autoconf mingw-w64-$ARCH-cmake mingw-w64-$ARCH-rapidjson
$ pacman -Sy base-devel mingw-w64-$ARCH-toolchain git libtool autoconf mingw-w64-$ARCH-cmake
$ git clone https://github.com/loki-project/loki-network.git
$ cd loki-network
$ mkdir -p build; cd build

Loading…
Cancel
Save