├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── cordova-plugins ├── packages ├── platforms ├── release └── versions ├── LICENSE ├── README.md ├── both ├── collections │ ├── comments.js │ ├── products.js │ └── users.js ├── controllers.js └── routes.js ├── client ├── autoform.js ├── stylesheets │ ├── _app-mixins.scss │ ├── _app-variables.scss │ └── app.scss └── templates │ ├── index.html │ ├── layouts │ ├── appLayout.html │ └── appLayout.js │ ├── modals │ ├── newComment │ │ ├── newComment.html │ │ └── newComment.js │ ├── newProduct │ │ ├── newProduct.html │ │ └── newProduct.js │ ├── search │ │ ├── search.html │ │ └── search.js │ ├── settings │ │ ├── settings.html │ │ └── settings.js │ └── signIn │ │ ├── signIn.html │ │ └── signIn.js │ ├── notifications │ ├── notifications.html │ └── notifications.js │ ├── products │ ├── _comment.html │ ├── _productItem.html │ ├── _voteButton.html │ ├── _voteButton.js │ ├── productsShow.html │ └── productsShow.js │ ├── profile │ ├── _profileHeader.html │ ├── profile.html │ └── profile.js │ ├── recent │ ├── recent.html │ └── recent.js │ ├── trending │ ├── trending.html │ └── trending.js │ └── users │ ├── usersShow.html │ └── usersShow.js ├── mobile-config.js ├── packages └── .gitignore ├── public ├── apple-touch-icon-114x114.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-144x144.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-57x57.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-72x72.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-160x160.png ├── favicon-16x16.png ├── favicon-192x192.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── images │ ├── atmosphere-icon.png │ ├── meteor-icon.png │ └── nodes.png ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png └── mstile-70x70.png ├── resources ├── icons │ ├── android_hdpi.png │ ├── android_ldpi.png │ ├── android_mdpi.png │ ├── android_xhdpi.png │ ├── ipad.png │ ├── ipad_2x.png │ ├── iphone.png │ ├── iphone_2x.png │ └── iphone_3x.png └── splash │ ├── android_hdpi_landscape.png │ ├── android_hdpi_portrait.png │ ├── android_ldpi_landscape.png │ ├── android_ldpi_portrait.png │ ├── android_mdpi_landscape.png │ ├── android_mdpi_portrait.png │ ├── android_xhdpi_landscape.png │ ├── android_xhdpi_portrait.png │ ├── ipad_landscape.png │ ├── ipad_landscape_2x.png │ ├── ipad_portrait.png │ ├── ipad_portrait_2x.png │ ├── iphone.png │ ├── iphone5.png │ ├── iphone6.png │ ├── iphone6p_landscape.png │ ├── iphone6p_portrait.png │ └── iphone_2x.png ├── server ├── accounts.js ├── methods.js ├── permissions.js ├── publications.js └── seeds.js └── settings.json.example /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/.gitignore -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/cordova-plugins: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/.meteor/platforms -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.1.0.3 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/.meteor/versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/README.md -------------------------------------------------------------------------------- /both/collections/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/both/collections/comments.js -------------------------------------------------------------------------------- /both/collections/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/both/collections/products.js -------------------------------------------------------------------------------- /both/collections/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/both/collections/users.js -------------------------------------------------------------------------------- /both/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/both/controllers.js -------------------------------------------------------------------------------- /both/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/both/routes.js -------------------------------------------------------------------------------- /client/autoform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/autoform.js -------------------------------------------------------------------------------- /client/stylesheets/_app-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/stylesheets/_app-mixins.scss -------------------------------------------------------------------------------- /client/stylesheets/_app-variables.scss: -------------------------------------------------------------------------------- 1 | // Add Custom/Override Variables Here: 2 | $positive: #DE4F4F; 3 | $loading-font-size: 22px; 4 | -------------------------------------------------------------------------------- /client/stylesheets/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/stylesheets/app.scss -------------------------------------------------------------------------------- /client/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/index.html -------------------------------------------------------------------------------- /client/templates/layouts/appLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/layouts/appLayout.html -------------------------------------------------------------------------------- /client/templates/layouts/appLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/layouts/appLayout.js -------------------------------------------------------------------------------- /client/templates/modals/newComment/newComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/newComment/newComment.html -------------------------------------------------------------------------------- /client/templates/modals/newComment/newComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/newComment/newComment.js -------------------------------------------------------------------------------- /client/templates/modals/newProduct/newProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/newProduct/newProduct.html -------------------------------------------------------------------------------- /client/templates/modals/newProduct/newProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/newProduct/newProduct.js -------------------------------------------------------------------------------- /client/templates/modals/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/search/search.html -------------------------------------------------------------------------------- /client/templates/modals/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/search/search.js -------------------------------------------------------------------------------- /client/templates/modals/settings/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/settings/settings.html -------------------------------------------------------------------------------- /client/templates/modals/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/settings/settings.js -------------------------------------------------------------------------------- /client/templates/modals/signIn/signIn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/signIn/signIn.html -------------------------------------------------------------------------------- /client/templates/modals/signIn/signIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/modals/signIn/signIn.js -------------------------------------------------------------------------------- /client/templates/notifications/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/notifications/notifications.html -------------------------------------------------------------------------------- /client/templates/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/notifications/notifications.js -------------------------------------------------------------------------------- /client/templates/products/_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/products/_comment.html -------------------------------------------------------------------------------- /client/templates/products/_productItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/products/_productItem.html -------------------------------------------------------------------------------- /client/templates/products/_voteButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/products/_voteButton.html -------------------------------------------------------------------------------- /client/templates/products/_voteButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/products/_voteButton.js -------------------------------------------------------------------------------- /client/templates/products/productsShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/products/productsShow.html -------------------------------------------------------------------------------- /client/templates/products/productsShow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/products/productsShow.js -------------------------------------------------------------------------------- /client/templates/profile/_profileHeader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/profile/_profileHeader.html -------------------------------------------------------------------------------- /client/templates/profile/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/profile/profile.html -------------------------------------------------------------------------------- /client/templates/profile/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/profile/profile.js -------------------------------------------------------------------------------- /client/templates/recent/recent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/recent/recent.html -------------------------------------------------------------------------------- /client/templates/recent/recent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/recent/recent.js -------------------------------------------------------------------------------- /client/templates/trending/trending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/trending/trending.html -------------------------------------------------------------------------------- /client/templates/trending/trending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/trending/trending.js -------------------------------------------------------------------------------- /client/templates/users/usersShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/users/usersShow.html -------------------------------------------------------------------------------- /client/templates/users/usersShow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/client/templates/users/usersShow.js -------------------------------------------------------------------------------- /mobile-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/mobile-config.js -------------------------------------------------------------------------------- /packages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/packages/.gitignore -------------------------------------------------------------------------------- /public/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/favicon-160x160.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/favicon-192x192.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/atmosphere-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/images/atmosphere-icon.png -------------------------------------------------------------------------------- /public/images/meteor-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/images/meteor-icon.png -------------------------------------------------------------------------------- /public/images/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/images/nodes.png -------------------------------------------------------------------------------- /public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/mstile-144x144.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/mstile-310x150.png -------------------------------------------------------------------------------- /public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/mstile-310x310.png -------------------------------------------------------------------------------- /public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/public/mstile-70x70.png -------------------------------------------------------------------------------- /resources/icons/android_hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/icons/android_hdpi.png -------------------------------------------------------------------------------- /resources/icons/android_ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/icons/android_ldpi.png -------------------------------------------------------------------------------- /resources/icons/android_mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/icons/android_mdpi.png -------------------------------------------------------------------------------- /resources/icons/android_xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/icons/android_xhdpi.png -------------------------------------------------------------------------------- /resources/icons/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/icons/ipad.png -------------------------------------------------------------------------------- /resources/icons/ipad_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/icons/ipad_2x.png -------------------------------------------------------------------------------- /resources/icons/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/icons/iphone.png -------------------------------------------------------------------------------- /resources/icons/iphone_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/icons/iphone_2x.png -------------------------------------------------------------------------------- /resources/icons/iphone_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/icons/iphone_3x.png -------------------------------------------------------------------------------- /resources/splash/android_hdpi_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/android_hdpi_landscape.png -------------------------------------------------------------------------------- /resources/splash/android_hdpi_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/android_hdpi_portrait.png -------------------------------------------------------------------------------- /resources/splash/android_ldpi_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/android_ldpi_landscape.png -------------------------------------------------------------------------------- /resources/splash/android_ldpi_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/android_ldpi_portrait.png -------------------------------------------------------------------------------- /resources/splash/android_mdpi_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/android_mdpi_landscape.png -------------------------------------------------------------------------------- /resources/splash/android_mdpi_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/android_mdpi_portrait.png -------------------------------------------------------------------------------- /resources/splash/android_xhdpi_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/android_xhdpi_landscape.png -------------------------------------------------------------------------------- /resources/splash/android_xhdpi_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/android_xhdpi_portrait.png -------------------------------------------------------------------------------- /resources/splash/ipad_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/ipad_landscape.png -------------------------------------------------------------------------------- /resources/splash/ipad_landscape_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/ipad_landscape_2x.png -------------------------------------------------------------------------------- /resources/splash/ipad_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/ipad_portrait.png -------------------------------------------------------------------------------- /resources/splash/ipad_portrait_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/ipad_portrait_2x.png -------------------------------------------------------------------------------- /resources/splash/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/iphone.png -------------------------------------------------------------------------------- /resources/splash/iphone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/iphone5.png -------------------------------------------------------------------------------- /resources/splash/iphone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/iphone6.png -------------------------------------------------------------------------------- /resources/splash/iphone6p_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/iphone6p_landscape.png -------------------------------------------------------------------------------- /resources/splash/iphone6p_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/iphone6p_portrait.png -------------------------------------------------------------------------------- /resources/splash/iphone_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/resources/splash/iphone_2x.png -------------------------------------------------------------------------------- /server/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/server/accounts.js -------------------------------------------------------------------------------- /server/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/server/methods.js -------------------------------------------------------------------------------- /server/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/server/permissions.js -------------------------------------------------------------------------------- /server/publications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/server/publications.js -------------------------------------------------------------------------------- /server/seeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/server/seeds.js -------------------------------------------------------------------------------- /settings.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteoric/meteorhunt/HEAD/settings.json.example --------------------------------------------------------------------------------