Skip to content

Getting Started

The Orbtronics payment platform is designed to facilate online payments for Orbtronics clients. This guide will explain how to set up the backend for project locally.

Quick Start

Clone the project locally

Clone the project by running the command below in your terminal

git clone https://github.com/Orbtronics-Dev/Payment-Dashboard-Backend.git

Then navigate to your project directory and install the dependencies by running the command below

npm install

Next create a .env file and set up the following env variables. Contact Kalem Mentore or Remy Francis for the exact values.

PowerTranzPowerTranzId=fac-ID
PowerTranzPowerTranzPassword=fac-pw
RequestId=8f9d8e1f-482cd3595d7a08db
MONGODBUSER=mogodbusername
MONGODBPW=mongodbpassword
TOKENIZE_ENDPOINT=fac_rskMangment_endpoint
SALE_ENDPOINT=fac_sale_endpoint
PROCESS_SALE_ENDPOINT=fac_process_sale_endpoint
FRONT_ENDPOINT=front_end_url
NON3DS_ENDPOINT=fac_Non3ds_sale_endpoint
EMAIL_USERNAME=email
EMAIL_PASSWORD=password

You can now start the server by running

npm run start:dev