Skip to content

The perfect tool for Nano representatives lists and network statistics

License

Notifications You must be signed in to change notification settings

AndrewCopeland/Tribes

 
 

Repository files navigation


Logo

Paw Tribes

The perfect tool for Paw tribes lists and network statistics.

What is Paw?

PAW is a animal themed digital currency. More information is available over on the official Paw repository.

Twitter Follow Discord

Link Description
PAW.digital PAW digital currency Homepage

Prerequisites

  • Webserver like nginx as a reverse proxy
  • MongoDB
  • Nano Node with RPC enabled
  • Node.js
  • PM2 npm install pm2 -g

Installation

Clone the repository to your server and install the dependencies with npm i.

After that copy the ecosystem.config.sample.js as ecosystem.config.js and edit the environment variables accordingly.

To start up the application execute pm2 start ecosystem.config.js.

It is recommended to put the application behind a proper webserver like nginx, a configuration for that could look like this:

server {
        listen 80;
        listen [::]:80;

        server_name tribes.paw.digital;

        // location to your PawTribes
        location / {
                proxy_pass http://127.0.0.1:4000;
        }

        // location to your PawAccept instance
        location /payment/ {
                rewrite ^/payment(/.*)$ $1 break;
                proxy_pass         http://127.0.0.1:5000;
        }
}

Installation Guide On Ubuntu 20.04

Installing mongo

# If you have mongo 3.6 already installed and want to keep it you can skip this.
# Careful purge command may erase more than what is wanted. Not recommended to use on a server that already uses or implements mongo in any way.
# sudo apt-get purge mongo*

sudo wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/5.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-5.0.list
sudo apt update
sudo apt install mongodb-org
sudo systemctl start mongod.service

Create config

Copy ecosystem.config.sample.js to ecosystem.config.js and update the configuration data

Install prerequisites and start

npm install
npm i pm2 -g
pm2 start ecosystem.config.js

To see logs pm2 ls and pm2 logs 0 ( or whatever else the id is )

Open Source Licenses

This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com.

Acknowledgements

Special thanks to the following!

About

The perfect tool for Nano representatives lists and network statistics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 76.8%
  • EJS 18.4%
  • CSS 4.1%
  • Other 0.7%