note:
    - counter firmware has to be up to 3.2.2
    
in server firewall, open port for both inbound and outbound
    - 27017 (MongoDB) 
    - 80 (SocketCluster)
    - 1236 (NodeCluster)

install mongodb
go to MongoDB program path: C:\Program Files\MongoDB\Server\4.0\bin
setup mongodb
    - open cmd
    - type: mongo
    - type: use footfallcounter
    - create user and password in cmd: db.createUser({user: "ffc_user",pwd: "qwer!234", roles: [{"role":"dbAdmin","db":"footfallcounter"}]})

install nodejs
install socketcluster
    - run this command in cmd: npm install -g socketcluster
copy NodeCluster.zip project to client server FFCCP root dir
extract NodeCluster.zip (in client server FFCCP root dir)

install pm2
    - run this command in cmd: npm install -g pm2
in NodeCluster folder, cd Tools, run StartLiveOccupancy.bat

