PayNix is a lightweight and intuitive billing software built in C++ — designed for small businesses, shops, and freelancers who need a fast and clean billing solution. Whether you’re generating invoices, managing item lists, or tracking transactions, PayNix has you covered.
Clone the repo and build:
git clone https://github.com/roshhellwett/PayNix.git
cd PayNix
mkdir build && cd build
cmake ..
make
./PayNix
name: Build PayNix
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y cmake g++
- name: Configure
run: |
mkdir -p build
cd build
cmake ..
- name: Build
run: |
cd build
make
👨💻 Developed with ❤️ by @roshhellwett
📬 Have suggestions? Open an issue or start a discussion
⭐ If you like this project, give it a star!