{"id":19558523,"url":"https://github.com/mach-kernel/dwolla-iav","last_synced_at":"2025-10-18T17:19:45.557Z","repository":{"id":146170752,"uuid":"47086729","full_name":"mach-kernel/dwolla-iav","owner":"mach-kernel","description":"A quickstart Rails 4+ demo of the Dwolla IAV flow.","archived":false,"fork":false,"pushed_at":"2016-02-26T14:09:54.000Z","size":44,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-26T08:19:13.687Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mach-kernel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-11-30T00:46:06.000Z","updated_at":"2016-02-26T14:09:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"c1785f00-320b-42b2-89e3-912d618ea2bc","html_url":"https://github.com/mach-kernel/dwolla-iav","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mach-kernel/dwolla-iav","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-iav","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-iav/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-iav/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-iav/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mach-kernel","download_url":"https://codeload.github.com/mach-kernel/dwolla-iav/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-iav/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262018677,"owners_count":23245618,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T04:47:22.657Z","updated_at":"2025-10-18T17:19:40.501Z","avatar_url":"https://github.com/mach-kernel.png","language":"Ruby","readme":"# dwolla-iav\nA quickstart tutorial application written in Rails 4+ illustrating an example `dwolla.js` implementation.\n\nSyntax highlighting done via [redcarpet](https://github.com/vmg/redcarpet) and [rouge](https://github.com/jneen/rouge).\n\n![Ooh! Pretty!](http://puu.sh/m0dJe/7d8510f62f.png)\n\n## Requirements\n- Rails 4+\n- Bundler\n\nThis application does not require any database access as all the data is processed via the Dwolla API. ActiveRecord has been removed from this project. \n\n## Getting Started\n\n### Fetch \u0026 Run\n\nThe default application key and secret bundled with the application are for you to use with the UAT environment, so you can just run it!\n\n```bash\ngit clone https://github.com/mach-kernel/dwolla-iav.git\ncd dwolla-iav\nbundle install \u0026\u0026 rails s\n```\n\nAfterwards, just visit your default Rails URL, which is probably `localhost:3000`.\n\n### Configure\n\nJust kidding. The only thing that you would really need to configure are the `dwolla-swagger` variables. You can find everything that you need in `config/initializers/dwolla.rb`\n\n```ruby\nrequire 'dwolla_swagger'\n\nmodule Dwolla\n  DwollaSwagger::Swagger.configure do |config|\n    config.access_token = 'some token'\n    config.host = 'api-uat.dwolla.com'\n    config.base_path = '/'\n    config.verify_ssl = false if Rails.env.development?\n  end\nend\n```\n\n**Note**: These values cannot be edited on-the-fly (except from within a `rails c` session) and require a restart of the rails server. \n\n## Deploy to Heroku\n\n### Requirements\n\n- A [Heroku](https://heroku.com) account with an available instance.\n- The [Heroku Toolbelt](https://toolbelt.heroku.com/) installed to your local machine (and added to your `%PATH%` variable if you are a Windows user).\n- I recommend forking this repository so that you can have write privileges. \n\n### How-to deploy: the easy-peasy way\n\n*Please* fork this repository before doing this.\n\n1. Connect your GitHub account in your Heroku admin panel\n\n2. Search for your repository\n\n\t![Search](https://s3.amazonaws.com/heroku.devcenter/heroku_assets/images/421-original.jpg)\n\n3. Deploy a branch\n\n\t![Deploy](https://s3.amazonaws.com/heroku.devcenter/heroku_assets/images/422-original.jpg)\n\n### How-to deploy: the devops special\n\n1. Log in\n    ```bash\n    heroku login\n    \n    Enter your Heroku credentials.\n    Email: you@example.com\n    Password:\n    Could not find an existing public key.\n    Would you like to generate one? [Yn]\n    Generating new SSH public key.\n    Uploading ssh public key /Users/david/.ssh/id_rsa.pub\n    ```\n\n2. Install Rails\n    ```bash\n    gem install rails\n    ```\n\n3. Drop back to your local machine's shell and change to the application directory\n\n    This will add a heroku branch to the git repository\n    \n    ```bash\n    heroku create\n    Creating dwolla-rails-heroku... done, stack is cedar-14\n    https://dwolla-rails-heroku.herokuapp.com/ | https://git.heroku.com/dwolla-rails-heroku.git\n    Git remote heroku added\n    ```\n\nAnd finally, deploy and run.\n\n```bash\ngit push heroku master\nheroku ps:scale web=1\n```\n\nThat wasn't so bad, was it?\n\n## Credits\n\n- Rails app by [David Stancu](http://davidstancu.me) for [Dwolla Inc.](https://developers.dwolla.com)\n- `dwolla.js` by [Dwolla Inc.](https://developers.dwolla.com)\n\n## License\n\nCopyright (C) 2015 David Stancu, Dwolla Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmach-kernel%2Fdwolla-iav","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmach-kernel%2Fdwolla-iav","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmach-kernel%2Fdwolla-iav/lists"}