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
-- | |
-- Table structure for table `counties` | |
-- | |
CREATE TABLE IF NOT EXISTS `counties` ( | |
`countyID` int(11) NOT NULL auto_increment, | |
`countyName` varchar(10) NOT NULL, | |
`lat` float default NULL, | |
`lng` float default NULL, |
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
# /api/auth | |
resource :auth do | |
desc "Creates and returns access_token if valid login" | |
params do | |
requires :login, :type => String, :desc => "Username or email address" | |
requires :password, :type => String, :desc => "Password" | |
end | |
post :login do |
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
/* http://twitter.github.com/bootstrap/scaffolding.html#responsive */ | |
/* Landscape phones and down */ | |
@media (max-width: 480px) { ... } | |
/* Landscape phone to portrait tablet */ | |
@media (max-width: 768px) { ... } | |
/* Portrait tablet to landscape and desktop */ | |
@media (min-width: 768px) and (max-width: 940px) { ... } |