Small updates [skip ci]

This commit is contained in:
James Cole 2015-04-03 07:44:44 +02:00
parent 720926c50d
commit 64c031c7fe
3 changed files with 19 additions and 9 deletions

View File

@ -11,3 +11,7 @@ DB_PASSWORD=secret
CACHE_DRIVER=file
SESSION_DRIVER=file
EMAIL_SMTP=
EMAIL_USERNAME=
EMAIL_PASSWORD=
ANALYTICS_ID=ABC

View File

@ -26,9 +26,14 @@ To install and use Firefly III, please read [the installation guide](https://git
## Current features
- [A double-entry bookkeeping system](http://en.wikipedia.org/wiki/Double-entry_bookkeeping_system);
- [A double-entry bookkeeping system](https://en.wikipedia.org/wiki/Double-entry_bookkeeping_system);
- You can store, edit and remove withdrawals, deposits and transfers. This allows you full financial management;
- It's possible to create, change and manage money using _budgets_;
- You can manage different types of accounts
- Asset accounts
- Shared asset accounts (household accounts)
- Saving accounts
- Credit cards
- It's possible to create, change and manage money using _[budgets](https://en.wikipedia.org/wiki/Envelope_system)_;
- Organize transactions using categories;
- Save towards a goal using piggy banks;
- Predict and anticipate bills;
@ -49,9 +54,7 @@ Firefly III will feature, but does not feature yet:
- More control over other resources outside of personal finance
- Accounts shared with a partner (household accounts)
- Debts
- Credit cards
- More test-coverage;
- Firefly will be able to split transactions; a single purchase can be split in multiple entries, for more fine-grained control.
- Firefly will be able to join transactions.

13
pu.sh
View File

@ -1,10 +1,13 @@
#!/bin/bash
# create DB if not exists
# backup .env file.
cp .env .env.backup
if [ ! -f tests/database/db.sqlite ]; then
touch tests/database/db.sqlite
php artisan migrate --seed
fi
# set testing environment
cp .env.testing .env
# test!
phpunit --verbose
# restore .env file
mv .env.backup .env