https://github.com/adamzaninovich/hamilton
An iOS app to connect to Senna
https://github.com/adamzaninovich/hamilton
Last synced: 6 days ago
JSON representation
An iOS app to connect to Senna
- Host: GitHub
- URL: https://github.com/adamzaninovich/hamilton
- Owner: adamzaninovich
- License: mit
- Created: 2013-11-01T16:58:31.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-22T16:58:00.000Z (over 11 years ago)
- Last Synced: 2025-02-16T19:48:28.124Z (3 months ago)
- Language: Objective-C
- Homepage:
- Size: 3.49 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hamilton
**Hamilton**, an awesome iOS event registration app!
## Getting Started
### Development Setup (OSX)
1. Install [CocoaPods](http://cocoapods.org)
gem install cocoapods
pod setup2. Install Dependencies for Hamilton
pod install
3. Open Xcode workspace via Xcode
Hamilton.xcworkspace
4. Build/Run project from xCode
### About the group and file structure
* **Hamilton** - App delegate, storyboards, and other top level classes
* **Hamilton/API** - API clients and other networking code
* **Hamilton/Controllers** - View Controllers
* **Hamilton/Models** - Data models, entities, core business logic
* **Hamilton/Views** - Custom views and table view cells
* **Hamilton/Support** - Category methods, macros, and other supporting code that doesn't have another home
* **Resources/Images.xcassets** - Add images here
* **Lib** - code that is isolated from this project### How to Contribute
##### Adding a feature:
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request##### Keep up-to-date:
1. Add upstream (`git remote add upstream [email protected]:adamzaninovich/Hamilton.git`)
2. Fetch lastest upstream master (`git pull upstream`)
3. Checkout master (`git checkout master`)
4. Merge upstream into master (`git merge upstream/master`)