Home Features Download Setup Guide Workflow Code Contact

ASITHA MD V5

The Ultimate Session Manager

Features

Easy Pairing

Connect devices effortlessly with secure and instant pairing codes.

Go to Pairing

Download Ready

Get the latest versions quickly via trusted cloud download links.

Go to Download

DEPLOY CODE

Github Workflow Deploy Code.

name: Node.js CI

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        node-version: [20.x]

    steps:
    - name: Checkout repository
      uses: actions/checkout@v3

    - name: Set up Node.js
      uses: actions/setup-node@v3
      with:
        node-version: ${{ matrix.node-version }}

    - name: Install dependencies
      run: npm install

    - name: Start application
      run: npm start

Setup Guide: How to Run ASITHA MD on Ubuntu VPS

1. Update Ubuntu and Install Prerequisites

Make sure your server is up to date and install curl, gnupg, and build tools:

sudo apt update && sudo apt upgrade -y
sudo apt install -y curl gnupg build-essential

2. Install Node.js (LTS) and npm

Fetch and install the NodeSource Node.js 18.x LTS repository and install node and npm:

curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt install -y nodejs

3. Verify Installation

Check installed versions of node and npm to ensure they're installed:

node -v
npm -v

4. Clone the ASITHA MD Repository

Download the latest source code from GitHub:

git clone https://github.com/nbbb15092/abc.git
cd abc

5. Install Dependencies

Install required Node.js modules:

npm install

6. Start ASITHA MD

Launch the application:

npm start

For more information, visit the official GitHub repository.