mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
🎨 made isntructions more clear
This commit is contained in:
parent
b0fdfc5f4f
commit
4944655af9
1 changed files with 25 additions and 4 deletions
|
|
@ -5,11 +5,32 @@
|
||||||
|
|
||||||
### Linux
|
### Linux
|
||||||
#### Debian
|
#### Debian
|
||||||
`sudo apt install libjsoncpp-dev uuid-dev openssl libssl-dev zlib1g-dev`
|
```
|
||||||
|
sudo apt install libjsoncpp-dev uuid-dev openssl libssl-dev zlib1g-dev
|
||||||
|
```
|
||||||
#### CentOS 7.5
|
#### CentOS 7.5
|
||||||
`yum install git gcc gcc-c++ && git clone https://github.com/Kitware/CMake && cd CMake/ && ./bootstrap && make && make install && yum install centos-release-scl && devtoolset-8 && scl enable devtoolset-8 bash && git clone https://github.com/open-source-parsers/jsoncpp && cd jsoncpp/ && mkdir build && cd build && cmake .. && make && make install && yum install libuuid-devel && yum install openssl-devel && yum install zlib-devel`
|
```
|
||||||
|
yum install git gcc gcc-c++
|
||||||
|
git clone https://github.com/Kitware/CMake
|
||||||
|
cd CMake/
|
||||||
|
./bootstrap
|
||||||
|
make
|
||||||
|
make install
|
||||||
|
yum install centos-release-scl devtoolset-8
|
||||||
|
scl enable devtoolset-8 bash
|
||||||
|
git clone https://github.com/open-source-parsers/jsoncpp
|
||||||
|
cd jsoncpp/
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make
|
||||||
|
make install
|
||||||
|
yum install libuuid-devel openssl-devel zlib-devel
|
||||||
|
```
|
||||||
### MacOS
|
### MacOS
|
||||||
`brew install jsoncpp ossp-uuid openssl zlib`
|
```
|
||||||
|
brew install jsoncpp ossp-uuid openssl zlib
|
||||||
|
```
|
||||||
|
|
||||||
### Docker
|
### Docker
|
||||||
Docker Package can be found [here](https://github.com/EntireTwix/CCash/packages/851105)
|
Docker Package can be found [here](https://github.com/EntireTwix/CCash/packages/851105)
|
||||||
|
|
@ -55,4 +76,4 @@ make -j<threads>
|
||||||
```
|
```
|
||||||
|
|
||||||
### Certs
|
### Certs
|
||||||
make sure to edit `config.json` adding the certificate location if you're using HTTPS, I personally use certbot, **it is Highly recommened you secure your server**.
|
make sure to edit `config.json` adding the certificate location if you're using HTTPS, I personally use certbot, **it is Highly recommened you secure your server**.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue