Invoiceplane
InvoicePlane is a self-hosted open source application for managing your quotes, invoices, clients and payments.
Installation
Install invoiceplaneAUR from the AUR.
If you want to choose a different language than English you should also install invoiceplane-translationsAUR. Further you will need a database (e.g. MariaDB), a web server (like Nginx) with php-support. You may refer following sites:
Write permissions have to be granted before proceeding with the installation:
chown -R http:http /usr/share/webapps/invoiceplane
Configuration
Here's an example on how you could setup a database for Invoiceplane with MariaDB called invoiceplane
for the user invoiceplane
identified by the password password
:
CREATE DATABASE invoiceplane; GRANT ALL PRIVILEGES ON invoiceplane.* TO invoiceplane@'localhost' IDENTIFIED BY 'password'; FLUSH PRIVILEGES;
Visit the installation wizard page at http://127.0.0.1/invoiceplane/setup and follow the instructions.