1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
Go to file
2015-03-25 17:52:01 +02:00
app Fixed issue related to using multiple gateways 2015-03-25 17:52:01 +02:00
bootstrap Setting default environment back to 'production' 2015-02-09 12:41:11 +02:00
node_modules Adding Grunt for file concat 2014-04-28 23:05:37 +03:00
public Fixed footer location and added Quetzal 2015-03-24 17:26:39 +02:00
tests Bug fixes 2014-03-17 20:05:01 +02:00
vendor/php-payments Adding php-payments library code 2014-04-13 09:39:55 +03:00
_ide_helper_models.php Implement delete handling and do more checks to make sure we dont get corrupted ical files 2014-10-20 20:59:46 +02:00
_ide_helper.php Added new payment providers 2014-11-25 20:40:54 +02:00
.bowerrc Set Proper File permissions. 2014-02-09 23:38:40 +02:00
.gitattributes Set Proper File permissions. 2014-02-09 23:38:40 +02:00
.gitignore Bug fixes 2015-01-22 11:23:52 +02:00
artisan Upgraded to laravel 4.1 and working on app engine support 2014-01-04 23:31:37 +02:00
bower.json Minor bug fixes 2014-11-12 17:22:54 +02:00
codeception.yml Added codeception 2014-02-04 00:56:23 +02:00
composer.json Updated barryvdh/laravel-debugbar version. 2015-03-08 16:27:04 +00:00
composer.lock Added new payment providers 2014-11-25 20:40:54 +02:00
Gruntfile.js Restyled client pages 2015-02-19 00:34:36 +02:00
LICENSE Enabled setting an invoice footer 2015-02-28 23:42:47 +02:00
package.json Adding Grunt for file concat 2014-04-28 23:05:37 +03:00
php.ini Set Proper File permissions. 2014-02-09 23:38:40 +02:00
phpunit.xml Set Proper File permissions. 2014-02-09 23:38:40 +02:00
README.md Updated to https urls in the readme 2015-03-23 14:13:13 +02:00
scheduler.yml Set Proper File permissions. 2014-02-09 23:38:40 +02:00
server.php Set Proper File permissions. 2014-02-09 23:38:40 +02:00

Invoice Ninja

Simple, Intuitive Invoicing

https://www.invoiceninja.com

Note: please submit any pull requests against the Laravel 5 branch

If you'd like to use our code to sell your own invoicing app we have an affiliate program. Get in touch for more details.

Introduction

Most online invoicing sites are expensive. They shouldn't be. The aim of this project is to provide a free, open-source alternative. Additionally, the hope is the codebase will serve as a sample site for Laravel as well as other JavaScript technologies.

To setup the site you can either use this zip file (easier to setup) or checkout the code from GitHub following the instructions below (easier to stay up to date).

For a WAMP/MAMP/LAMP setup you can one-click install using Softaculous's AMPPS. To deploy the app with Docker you can use this project.

To connect follow @invoiceninja or join the Facebook Group. For discussion of the code please use the Google Group.

If you'd like to translate the site please use caouecs/Laravel4-long for the starter files.

Developed by @hillelcoren | Designed by kantorp-wegl.in.

Features

  • Core application built using Laravel 4.1
  • Invoice PDF generation directly in the browser
  • Integrates with many payment providers
  • Recurring invoices
  • Tax rates and payment terms
  • Multi-user support
  • Zapier integration
  • D3.js visualizations

Contributors

Documentation

Steps to setup from GitHub

If you plan on submitting changes it's best to fork the repo, otherwise you can just checkout the code.

git clone https://github.com/hillelcoren/invoice-ninja.git ninja
cd ninja

Install Laravel packages using Composer

Note: you may be prompted for your Github user/pass due to their API limits.

composer install

Install JavaScript and HTML packages using Bower. This is optional, it's only needed if you want to modify the JavaScript.

bower install

Create database user and a database for ninja

CREATE SCHEMA `ninja` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'ninja'@'localhost' IDENTIFIED BY 'ninja';
GRANT ALL PRIVILEGES ON `ninja`.* TO 'ninja'@'localhost';
FLUSH PRIVILEGES;

Add public/ to your web server root then load / to configure the application.

Developer Notes

  • The application requires PHP >= 5.4.0
  • If you make any changes to the JavaScript files you need to run grunt to create the built files. See Gruntfile.js for more details.
  • The lookup tables are cached in memory (ie, Currencies, Timezones, Languages, etc). If you add a record to the database you need to clear the cache by uncommenting Cache::flush() in app/routes.php.
  • If you run into any composer errors try running composer dump-autoload.

Ubuntu Notes

# Install php-mcrypt
apt-get install php5-mcrypt
sudo php5enmod mcrypt

# Install Composer
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer

# Install Bower
sudo apt-get install npm nodejs-legacy
sudo npm install -g bower
sudo ln -s /usr/local/lib/node_modules/bower/bin/bower /usr/local/bin/bower

# Install Grunt (For development only)
npm install -g grunt-cli

Frameworks/Libraries