All Projects → boxbilling → Boxbilling

boxbilling / Boxbilling

Licence: apache-2.0
BoxBilling - Open source billing and client management software

Projects that are alternatives of or similar to Boxbilling

Akaunting
Free and Online Accounting Software
Stars: ✭ 4,599 (+1136.29%)
Mutual labels:  crm, payments, billing
Invoiceplane
A self-hosted open source application for managing your invoices, clients and payments.
Stars: ✭ 1,936 (+420.43%)
Mutual labels:  crm, billing, open-source
Contribute To This Project
This project is waiting for your contribution. If you have never contributed code on GitHub before, this is the project to get you started.
Stars: ✭ 501 (+34.68%)
Mutual labels:  community, help-wanted, open-source
egov
eGov España - API abierto de acceso a datos púbicos
Stars: ✭ 21 (-94.35%)
Mutual labels:  community, help-wanted
Goupaz.com
Community driven open source accelerator
Stars: ✭ 163 (-56.18%)
Mutual labels:  community, open-source
Open Source Meetup Alternatives
Open-Source Alternatives to Meetup
Stars: ✭ 191 (-48.66%)
Mutual labels:  community, open-source
Collaboration For Beginners
A Beginner's Guide to Contributing in an Open Source Project.
Stars: ✭ 86 (-76.88%)
Mutual labels:  community, open-source
killbill-admin-ui
Kill Bill Administrative UI engine
Stars: ✭ 39 (-89.52%)
Mutual labels:  payments, billing
subscribie
Collect recurring payments online - subscription payments collection automation
Stars: ✭ 36 (-90.32%)
Mutual labels:  payments, billing
utopia-crm
Utopía is an open source platform for community based newsrooms to manage their subscriptions
Stars: ✭ 15 (-95.97%)
Mutual labels:  community, crm
drf-stripe-subscription
An out-of-box Django REST framework solution for payment and subscription management using Stripe.
Stars: ✭ 42 (-88.71%)
Mutual labels:  payments, billing
Awesome Jamstack
📔 Curated list of resources: books, videos, articles, speaker decks, tools about using the JAMstack (A modern web development architecture for creating fast, secure and dynamic websites)
Stars: ✭ 115 (-69.09%)
Mutual labels:  community, open-source
Apps
A collection of apps built on Electron
Stars: ✭ 1,283 (+244.89%)
Mutual labels:  community, open-source
killbill-stripe-plugin
Kill Bill plugin for Stripe
Stars: ✭ 16 (-95.7%)
Mutual labels:  payments, billing
Openfintech
Opensource FinTech standards & payment provider data
Stars: ✭ 87 (-76.61%)
Mutual labels:  community, payments
kbcli
GO client library for Kill Bill
Stars: ✭ 22 (-94.09%)
Mutual labels:  payments, billing
killbill-client-java
Java client library for Kill Bill
Stars: ✭ 30 (-91.94%)
Mutual labels:  payments, billing
Xenorchestra installer
A simple install script for Xen Orchestra
Stars: ✭ 252 (-32.26%)
Mutual labels:  community, open-source
First Contributions
🚀✨ Help beginners to contribute to open source projects
Stars: ✭ 21,839 (+5770.7%)
Mutual labels:  community, open-source
Opensourcewebsite Org
OpenSourceWebsite (OSW) - online community managed by users using electronic voting and modifying source code
Stars: ✭ 834 (+124.19%)
Mutual labels:  community, open-source


BoxBilling
BoxBilling

Build Status Download Latest BoxBilling Issues BoxBilling Demo BoxBilling Size License Scrutinizer Code Quality

BoxBilling is an open source, free billing and client management software which helps any kind of company whether they are startups or even individuals who wish to automate their billing process along with tools and features which will allow you start automating your business processes today!

You can simplify your web hosting business by putting your billing cycle in control by integrating your favorite server management software to BoxBilling.

📥 BoxBilling is self-hosted — all you need is a compatible web server, and a MySQL database. For further information, check the requirements section.

Table of content

Requirements

Although BoxBilling may work in lower or smaller conditions, we highly recommend you to ensure that your environment has the following software installed:

  • PHP 7.2, or higher.
  • MySQL 8, or higher.
  • Following PHP extensions:
    • pdo_mysql
    • curl
    • zlib
    • gettext
    • openssl

Installation

Installing BoxBilling is pretty easy.

  • If you are in a shared hosting environment, you'll most likely want to install the latest stable version from releases.
  • If you are familiar with Docker, you can also go with Docker. We have a guide for that.
  • If you're planning to contribute BoxBilling's development, and wanting to make pull requests in the future, please directly run BoxBilling from the source code instead.

Obtaining a copy from GitHub releases

We make new releases of BoxBilling whenever we have some new cool stuff to introduce you to, or when we fix some bugs 🐞. If you're planning to use BoxBilling in a production environment, downloading BoxBilling from the source code and using it may not be a good choice. Going with releases instead of the master branch will likely be better as releases are intended to be more secure and stable. However, if you're planning to contribute, you will likely want to go with the source code instead.

First, you should download the latest release from our GitHub repository. Our releases typically have a file called "BoxBilling.zip" attached to them, and that's exactly what you need to download. Unlike the source code itself, releases include Composer packages, so you won't need to run Composer to install PHP packages. If you're going to use BoxBilling in a shared hosting environment, you'll most likely not have an option to access Composer, so obtaining a copy from GitHub releases would be your best option.

After you downloaded the release, unzip it somewhere, and copy the content of the ZIP archive to your web server's public folder (usually, that's called "htdocs" or "public_html"). Your web directory's structure should now look like this:

  • htdocs
    • bb-data
    • bb-library
    • bb-module
    • ...

Now, as you have everything ready to start the installation of BoxBilling, head over to your web server, and follow on-screen instructions to complete the installation using web installer. Ta-da, you've done it! 🎉

Running from the source code

To clone and run BoxBilling, you'll first need to download an up-to-date ZIP archive and save it to your computer locally.

Then, extract the contents of the "src" folder inside the ZIP archive to your web server's public folder (usually, that's called "htdocs" or "public_html"). Your web directory's structure should now look like this:

  • htdocs
    • bb-data
    • bb-library
    • bb-module
    • ...

We do not store the Composer packages in our GitHub repository, we use Composer for that. Composer is a dependency manager for PHP, just like the NPM of Node.js, or PIP of Python.

If you don't have Composer installed, or it's your first time with Composer, you probably may want to read Composer's getting started guide.

If you don't have SSH access to your server, or your webmaster in your shared hosting environment doesn't let you use Composer, you may not be able to install the required packages for BoxBilling. In that case, you probably should install BoxBilling by obtaining a ready-to-install copy from GitHub releases.

If you've already installed Composer, head over to the folder where you copied the content of the "src" folder to, and run the following command to download the required packages to your web server:

$ composer install

Now, as you have everything ready to start the installation of BoxBilling, head over to your web server, and follow on-screen instructions to complete the installation using web installer. Ta-da, you've done it! 🎉

Running with Docker

Docker logo

This guide assumes you already have Docker, Git and GNU make installed.

To clone the repository, first run these commands in your command line:

# Clone this repository
$ git clone https://github.com/boxbilling/boxbilling

# Navigate to the local repository
$ cd boxbilling

# Run the app with some help from Docker
$ make all

Now, you can navigate to your web server in your browser. If you're using a PC, or directly a server without a server manager like Plesk, this address will probably be localhost.

Contributing

🖥️ Welcome, fellow developer! 🙂

First of all, thank you for your interest, and taking your time to contribute to BoxBilling.

BoxBilling is developing and reviving day to day, with the help of everyone. We have a set of guidelines for those wishing to contribute to BoxBilling. If you want to read them, please head over to contributors' guidelines.

Your pull requests will be highly welcomed. If you're looking for something to start with, you can check the open issues on our GitHub repository.

Questions? Don't hesitate to create an issue, or join us on Slack to say hi.

⭐ Not a developer? Feel free to help by starring the repository. It helps us catching attention of new developers who'd like to contribute.

Licensing

BoxBilling is licensed under the Apache License, Version 2.0. See LICENSE for full license text.

Links

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].