This repository has been archived by the owner on Feb 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Martin Schurig
committed
Feb 21, 2018
1 parent
c346abb
commit 5e722e8
Showing
21 changed files
with
379 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--require spec_helper | ||
--color |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,21 @@ | ||
--- | ||
ynab: | ||
username: # YNAB username | ||
password: # YNAB password | ||
access_token: # Your YNAB access token | ||
budget_id: # the first hash in the url when you open your budget | ||
cash_account_name: 'Cash' # if set that it creates transactions | ||
cash_account_id: # if set that it creates transactions | ||
# to your cash account if withdrawal is detected | ||
accounts: | ||
- dumper: :fints | ||
iban: # iban of your account | ||
ynab_id: # last hash in the url when you click on the account in YNAB | ||
ynab_name: # the exact name how you named that account in YNAB | ||
username: # online banking username / alias | ||
password: # online banking PIN (NOT! the pin of your bank card!) | ||
fints_blz: # Your bank's code / Bankleitzahl | ||
fints_endpoint: # can be found here: https://www.hbci-zka.de/institute/institut_auswahl.htm | ||
# Use the PIN/TAN URL from the link above | ||
- dumper: :figo | ||
iban: # iban of your account | ||
ynab_id: # last hash in the url when you click on the account in YNAB | ||
ynab_name: # the exact name how you named that account in YNAB | ||
username: # figo username | ||
password: # figo password | ||
force_download: # default: false | ||
# // if you have multiple figo entries it | ||
# only fetches all transactions once. | ||
# To turn this off set this to true. | ||
- dumper: :n26 | ||
iban: # n26 iban | ||
ynab_id: # last hash in the url when you click on the account in YNAB | ||
ynab_name: # the exact name how you named that account in YNAB | ||
username: # n26 username | ||
password: # n26 password | ||
set_category: false # default: false, sets the N26 category name as category |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,8 @@ | ||
version: "2" | ||
services: | ||
selenium-chrome: | ||
image: selenium/standalone-chrome | ||
shm_size: 2g | ||
ports: | ||
- "4444:4444" | ||
volumes: | ||
- /dev/shm:/dev/shm # something for shared memory so chrome has enough | ||
- ./.cache:/home/seluser/Downloads # for figo | ||
- ./export:/usr/app/export | ||
ruby: | ||
container_name: ruby | ||
importer: | ||
build: | ||
context: . | ||
volumes: | ||
- ./config.yml:/usr/app/config.yml | ||
- ./export:/usr/app/export | ||
- ./.cache:/root/Downloads # for figo | ||
- ./.cache:/usr/app/.cache # for figo | ||
environment: | ||
- WEBDRIVER_URL=http://selenium-chrome:4444/wd/hub | ||
depends_on: | ||
- selenium-chrome | ||
command: "ruby /usr/app/run.rb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,7 @@ | ||
version: "2" | ||
services: | ||
selenium-chrome: | ||
image: selenium/standalone-chrome | ||
shm_size: 2g | ||
ports: | ||
- "4444:4444" | ||
volumes: | ||
- /dev/shm:/dev/shm # something for shared memory so chrome has enough | ||
- ./.cache:/home/seluser/Downloads # for figo | ||
- ./export:/usr/app/export | ||
ruby: | ||
container_name: ruby | ||
importer: | ||
image: schurig/ynab-bank-importer:latest | ||
volumes: | ||
- ./config.yml:/usr/app/config.yml | ||
- ./export:/usr/app/export | ||
- ./last_imported:/usr/app/last_imported | ||
- ./.cache:/root/Downloads # for figo | ||
- ./.cache:/usr/app/.cache # for figo | ||
environment: | ||
- WEBDRIVER_URL=http://selenium-chrome:4444/wd/hub | ||
depends_on: | ||
- selenium-chrome | ||
command: "ruby /usr/app/run.rb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.