mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-03-03 03:07:01 +00:00
* Fix js dependencies * Breadcrumb implementation * Test for UniqueEmailRule Validation * reduce length of account_key to prevent key too long error * Fixes for travis - reduce user email length * Reduce all unique field lengths to 100 to prevent key overflow * Fix for Bank Model * Prevent a user from registering multiple account with one email address when using multiple databases
23 lines
438 B
Plaintext
23 lines
438 B
Plaintext
APP_ENV=development
|
|
APP_DEBUG=false
|
|
APP_URL=http://ninja.test
|
|
APP_KEY=SomeRandomStringSomeRandomString
|
|
APP_CIPHER=AES-256-CBC
|
|
APP_LOCALE=en
|
|
|
|
DB_STRICT=false
|
|
DB_HOST=localhost
|
|
DB_USERNAME=ninja
|
|
DB_PASSWORD=ninja
|
|
|
|
DB_DATABASE1=ninja1
|
|
DB_DATABASE2=ninja2
|
|
|
|
MAIL_DRIVER=log
|
|
TRAVIS=true
|
|
API_SECRET=password
|
|
TEST_USERNAME=user@example.com
|
|
TEST_PERMISSIONS_USERNAME=permissions@example.com
|
|
USER_AUTH_PROVIDER=users
|
|
CONTACT_AUTH_PROVIDER=contacts
|