mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
commit
c890fd5e65
@ -6,16 +6,16 @@ APP_DEBUG=false
|
|||||||
APP_URL=http://localhost
|
APP_URL=http://localhost
|
||||||
|
|
||||||
DB_CONNECTION=db-ninja-01
|
DB_CONNECTION=db-ninja-01
|
||||||
MULTI_DB_ENABLED=true
|
MULTI_DB_ENABLED=false
|
||||||
|
|
||||||
DB_HOST1=localhost
|
DB_HOST1=localhost
|
||||||
DB_DATABASE1=db-ninja-01
|
DB_DATABASE1=ninja
|
||||||
DB_USERNAME1=ninja
|
DB_USERNAME1=ninja
|
||||||
DB_PASSWORD1=ninja
|
DB_PASSWORD1=ninja
|
||||||
DB_PORT1=3306
|
DB_PORT1=3306
|
||||||
|
|
||||||
DB_HOST2=localhost
|
DB_HOST2=localhost
|
||||||
DB_DATABASE2=db-ninja-02
|
DB_DATABASE2=ninja2
|
||||||
DB_USERNAME2=ninja
|
DB_USERNAME2=ninja
|
||||||
DB_PASSWORD2=ninja
|
DB_PASSWORD2=ninja
|
||||||
DB_PORT2=3306
|
DB_PORT2=3306
|
||||||
@ -43,7 +43,7 @@ MAIL_FROM_ADDRESS='user@example.com'
|
|||||||
MAIL_FROM_NAME='Self Hosted User'
|
MAIL_FROM_NAME='Self Hosted User'
|
||||||
|
|
||||||
POSTMARK_API_TOKEN=
|
POSTMARK_API_TOKEN=
|
||||||
REQUIRE_HTTPS=true
|
REQUIRE_HTTPS=false
|
||||||
|
|
||||||
GOOGLE_MAPS_API_KEY=
|
GOOGLE_MAPS_API_KEY=
|
||||||
API_SECRET=superdoopersecrethere
|
API_SECRET=superdoopersecrethere
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
[](https://codecov.io/gh/invoiceninja/invoiceninja)
|
[](https://codecov.io/gh/invoiceninja/invoiceninja)
|
||||||
[](https://www.codacy.com/app/turbo124/invoiceninja?utm_source=github.com&utm_medium=referral&utm_content=invoiceninja/invoiceninja&utm_campaign=Badge_Grade)
|
[](https://www.codacy.com/app/turbo124/invoiceninja?utm_source=github.com&utm_medium=referral&utm_content=invoiceninja/invoiceninja&utm_campaign=Badge_Grade)
|
||||||
|
|
||||||
# Invoice Ninja version 2.0 is coming!
|
# Invoice Ninja version 5 is coming!
|
||||||
|
|
||||||
We will be using the lessons learnt in Invoice Ninja 4.0 to build a bigger better platform to work from. If you would like to contribute to the project we will gladly accept contributions for code, user guides, bug tracking and feedback! Please consider the following guidelines prior to submitting a pull request:
|
We will be using the lessons learnt in Invoice Ninja 4.0 to build a bigger better platform to work from. If you would like to contribute to the project we will gladly accept contributions for code, user guides, bug tracking and feedback! Please consider the following guidelines prior to submitting a pull request:
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
5.0.4
|
5.0.7
|
@ -96,6 +96,7 @@ class Company extends BaseModel
|
|||||||
'first_month_of_year',
|
'first_month_of_year',
|
||||||
'slack_webhook_url',
|
'slack_webhook_url',
|
||||||
'google_analytics_key',
|
'google_analytics_key',
|
||||||
|
'client_can_register',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ return [
|
|||||||
'require_https' => env('REQUIRE_HTTPS', true),
|
'require_https' => env('REQUIRE_HTTPS', true),
|
||||||
'app_url' => env('APP_URL', ''),
|
'app_url' => env('APP_URL', ''),
|
||||||
'app_domain' => env('APP_DOMAIN', ''),
|
'app_domain' => env('APP_DOMAIN', ''),
|
||||||
'app_version' => '5.0.5',
|
'app_version' => '5.0.7',
|
||||||
'minimum_client_version' => '5.0.11',
|
'minimum_client_version' => '5.0.11',
|
||||||
'terms_version' => '1.0.1',
|
'terms_version' => '1.0.1',
|
||||||
'api_secret' => env('API_SECRET', ''),
|
'api_secret' => env('API_SECRET', ''),
|
||||||
|
@ -26,7 +26,7 @@ class SystemHealthTest extends TestCase
|
|||||||
|
|
||||||
$this->assertTrue(count($results) > 1);
|
$this->assertTrue(count($results) > 1);
|
||||||
|
|
||||||
$this->assertTrue($results['system_health']);
|
$this->assertTrue((bool)$results['system_health']);
|
||||||
|
|
||||||
$this->assertTrue($results['extensions'][0]['mysqli']);
|
$this->assertTrue($results['extensions'][0]['mysqli']);
|
||||||
$this->assertTrue($results['extensions'][1]['gd']);
|
$this->assertTrue($results['extensions'][1]['gd']);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user