This app is mostly static pages, with just a little bit of dynamic-ness in calling the DU app for the list of members and the status of whether or not we're accepting applications. If you want to make a change to text on http://doubleunion.org, you're in the right place!
If you are new to Rails, follow the RailsBridge Installfest instructions for getting your environment set up.
-
Fork the repo (click the Fork button above), and clone your fork to your local machine. Here's a GitHub tutorial about how to do so.
-
Standard Rails app setup
rake db:create
rake db:migrate
rake db:test:prepare
-
cp config/secrets.example.yml config/secrets.yml
If you add an additional page, add it to the static_pages
spec.
Make sure bundle exec rspec
passes before pushing your changes.
If you are new to GitHub, you can use this guide for help making a pull request.
- Fork it (there's a fork button in the upper right part of this page)
- Get it the app running locally (as described above)
- Create your feature branch
git checkout -b my-new-feature
- Write your code and specs
- Commit your changes
git commit -am 'Add some feature'
- Push your branch up to GitHub
git push origin my-new-feature
- Create a new Pull Request explaining your changes (including which issue it's fixing, if there is one)
- If you find bugs, have feature requests or questions, please create an issue.
Copyright (C) 2016 Double Union
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the LICENSE.txt file for the full license.