mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
added FAQ and Contribs
This commit is contained in:
parent
037bb2ea4d
commit
1e7203db9b
1 changed files with 20 additions and 4 deletions
24
README.md
24
README.md
|
|
@ -13,7 +13,9 @@ the currency model most Minecraft Servers adopt if any, is resource based, usual
|
||||||
CCash solves these issues and adds a level of abstraction, the main philosophy of CCash is to have fast core operations that other services build on
|
CCash solves these issues and adds a level of abstraction, the main philosophy of CCash is to have fast core operations that other services build on
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
drogon depedencies
|
drogon depedencies
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo apt install libjsoncpp-dev
|
sudo apt install libjsoncpp-dev
|
||||||
sudo apt install uuid-dev
|
sudo apt install uuid-dev
|
||||||
|
|
@ -21,7 +23,9 @@ sudo apt install openssl
|
||||||
sudo apt install libssl-dev
|
sudo apt install libssl-dev
|
||||||
sudo apt install zlib1g-dev
|
sudo apt install zlib1g-dev
|
||||||
```
|
```
|
||||||
|
|
||||||
building the project
|
building the project
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone --recurse-submodule https://github.com/EntireTwix/CCash/
|
git clone --recurse-submodule https://github.com/EntireTwix/CCash/
|
||||||
mkdir build
|
mkdir build
|
||||||
|
|
@ -29,11 +33,15 @@ cd build
|
||||||
cmake ..
|
cmake ..
|
||||||
make -j<threads>
|
make -j<threads>
|
||||||
```
|
```
|
||||||
|
|
||||||
then edit config.json to include the paths to your certs for HTTPS (I use certbot), or just remove the listener for port 443.
|
then edit config.json to include the paths to your certs for HTTPS (I use certbot), or just remove the listener for port 443.
|
||||||
|
|
||||||
```
|
```
|
||||||
vim ../config.json
|
vim ../config.json
|
||||||
```
|
```
|
||||||
|
|
||||||
finally, run the program
|
finally, run the program
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo ./bank <admin password> <saving frequency in minutes> <threads>
|
sudo ./bank <admin password> <saving frequency in minutes> <threads>
|
||||||
```
|
```
|
||||||
|
|
@ -45,12 +53,12 @@ Go to `{ip}/BankF/help` to see the bank's methods (also found in releases as hel
|
||||||
### Implemented:
|
### Implemented:
|
||||||
|
|
||||||
- [Web Frontend](https://github.com/Expand-sys/ccashfrontend)
|
- [Web Frontend](https://github.com/Expand-sys/ccashfrontend)
|
||||||

|

|
||||||
- [CC Frontend](https://github.com/Reactified/rpm/blob/main/packages/ccash-wallet)
|
- [CC Frontend](https://github.com/Reactified/rpm/blob/main/packages/ccash-wallet)
|
||||||

|

|
||||||
- [CC Shop](https://github.com/Reactified/rpm/tree/main/packages/ccash-shop)
|
- [CC Shop](https://github.com/Reactified/rpm/tree/main/packages/ccash-shop)
|
||||||

|

|
||||||

|

|
||||||
- [CC API](https://github.com/Reactified/rpm/blob/main/packages/ccash-api/api.lua)
|
- [CC API](https://github.com/Reactified/rpm/blob/main/packages/ccash-api/api.lua)
|
||||||
- [CC ATM](https://github.com/Reactified/misc/tree/main/lua/ccash-bank) an ATM for economies allowing for an initial exchange to start up
|
- [CC ATM](https://github.com/Reactified/misc/tree/main/lua/ccash-bank) an ATM for economies allowing for an initial exchange to start up
|
||||||
|
|
||||||
|
|
@ -68,6 +76,14 @@ Go to `{ip}/BankF/help` to see the bank's methods (also found in releases as hel
|
||||||
|
|
||||||
`**WARNING** : abruptly killing the program will result in data loss, use Close() method to close safely`
|
`**WARNING** : abruptly killing the program will result in data loss, use Close() method to close safely`
|
||||||
|
|
||||||
|
## FAQ
|
||||||
|
|
||||||
|
some frequently asked questions are
|
||||||
|
|
||||||
|
## Contributions
|
||||||
|
|
||||||
|
[Doggo](https://github.com/FearlessDoggo21) Logs Optimized
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
### Performance
|
### Performance
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue