-
-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
Artucuno edited this page Jun 21, 2022
·
1 revision
Installation should practically be the same for all Operating Systems.
git clone https://github.com/Loona-cc/LoonaBilling --branch main
cd LoonaBilling
pip3 install -r requirements.txt
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
python3 run.py
You are now ready to use LoonaBilling!