{"id":19558518,"url":"https://github.com/mach-kernel/dwolla-send","last_synced_at":"2025-11-19T23:03:11.505Z","repository":{"id":31391005,"uuid":"34954148","full_name":"mach-kernel/dwolla-send","owner":"mach-kernel","description":"A quickstart tutorial application written in Rails 4 + bootstrap to illustrate using the Dwolla API with our whitelabel service.","archived":false,"fork":false,"pushed_at":"2015-06-15T12:18:58.000Z","size":502,"stargazers_count":0,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-26T08:19:14.821Z","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}},"created_at":"2015-05-02T16:07:01.000Z","updated_at":"2015-06-15T12:00:50.000Z","dependencies_parsed_at":"2022-08-17T18:55:29.968Z","dependency_job_id":null,"html_url":"https://github.com/mach-kernel/dwolla-send","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mach-kernel/dwolla-send","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-send","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-send/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-send/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-send/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mach-kernel","download_url":"https://codeload.github.com/mach-kernel/dwolla-send/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mach-kernel%2Fdwolla-send/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285342137,"owners_count":27155385,"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","status":"online","status_checked_at":"2025-11-19T02:00:05.673Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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:21.852Z","updated_at":"2025-11-19T23:03:11.491Z","avatar_url":"https://github.com/mach-kernel.png","language":"Ruby","readme":"# dwolla-send\nA quickstart tutorial application written in Rails 4 + bootstrap to illustrate the send UX flow, without the traditional `https://dwolla.com` environment. \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/hAvIQ/64edf65493.png)\n![Really!](http://puu.sh/hAvKH/bec6c28b3c.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### The easy way\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-send.git\ncd dwolla-send\nbundle install \u0026\u0026 rails s\n```\n\nAfterwards, just visit your default Rails URL, which is probably `localhost:3000`.\n\n### Hurt me plenty\n\nJust kidding. The only thing that you would really need to configure are the `dwolla-ruby` variables. You can find everything that you need in `config/initializers/dwollavars.rb`\n\n```ruby\nrequire 'dwolla'\n\nmodule DwollaVars\n\tmattr_reader  :Dwolla, :pin\n\n\t@@Dwolla ||= Dwolla\n\t\n\t@@Dwolla::api_key ||= nil\n\t@@Dwolla::api_secret ||= nil\n\n\t@@Dwolla::token ||= nil\n\t@@pin ||= nil\n\n\t@@Dwolla::sandbox ||= true\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\nHeroku is in the name of the repo, right?\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. Add Heroku gem, change `redirect`\n\n    I would have done this for you, but this is more fun!\n    \n    ```bash\n    echo \"gem 'rails_12factor'\" \u003e\u003e Gemfile\n    bundle install\n    ```\n\n4. 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## I'm getting an upset cat\n![Sad](http://puu.sh/hAw9l/4310b6f3cd.jpg)\n\nEdit `dwollavars.rb`!\n\n## Credits\n\nWritten with love by [David Stancu](http://davidstancu.me) for [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.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmach-kernel%2Fdwolla-send","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmach-kernel%2Fdwolla-send","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmach-kernel%2Fdwolla-send/lists"}