Skip to content

Installation

Artucuno edited this page Jun 21, 2022 · 1 revision

Installation

Installation should practically be the same for all Operating Systems.

Install

git clone https://github.com/Loona-cc/LoonaBilling --branch main
cd LoonaBilling

Requirements

pip3 install -r requirements.txt

Updating configuration

Open config.py with your favourite editor

domain_url = "http://localhost/" # The main url for your domain (Make sure to have the / at the end)
domain = 'localhost' # The domain/ip that your LoonaBilling instance will be pointed to
businessName = 'Loona' # Your business name
aboutText = 'A WIP Open-source WHMCS alternative.' # About your business
ip = '127.0.0.1' # What IP LoonaBilling will be listening on
debug = False # Used for debugging errors and reloads app when changes are made (Not recommended for production)
port = 80 # The port LoonaBilling is running on
ssl = None # Replace with ('cert.pem', 'key.pem') for SSL

Running

python3 run.py

image

You are now ready to use LoonaBilling!

Clone this wiki locally