Port is a forum-like application base on quorum.
Online Site: https://port.base.one/
Install docker and docker-compose
# Clone this repo
git clone git@github.com:rumsystem/nft-bbs.git
cd rum-port
PORT=80 # Optional. Otherwise using fallback port 35572 defined in docker-compose.yml
docker-compose up -d
Make a copy of the sample config file and modify it, then restart the application
cd rum-port/packages/server
cp config.sample.yml config.yml
vi config.yml
- Node lts-16 or greater
- Yarn
- Postgres
cd port
yarn
Create rum-port/packages/server/.env
and set following envs
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=rum-port
DB_USER=postgres
DB_PASSWORD=123456
cd rum-port/packages/server
yarn dev
[optional] To enable https, place fullchain.pem
and key.pem
under /rum-port/cert/
folder
cd rum-port/packages/client
yarn dev
cd rum-port
yarn build