├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── .scripts └── mocha_boot.js ├── .storybook ├── config.js └── webpack.config.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── client ├── configs │ ├── app.js │ ├── components.js │ ├── composers.js │ └── context.js ├── main.js └── modules │ ├── _module_template │ ├── actions │ │ ├── index.js │ │ └── tests │ │ │ └── index.js │ ├── components │ │ ├── .stories │ │ │ └── index.js │ │ └── tests │ │ │ └── index.js │ ├── configs │ │ └── method_stubs │ │ │ ├── index.js │ │ │ └── model.js │ ├── index.js │ ├── lib │ │ ├── index.js │ │ └── tests │ │ │ └── index.js │ └── routes.js │ ├── admin │ ├── actions │ │ ├── index.js │ │ └── tests │ │ │ └── index.js │ ├── components │ │ ├── .stories │ │ │ └── index.js │ │ └── tests │ │ │ └── index.js │ ├── configs │ │ └── method_stubs │ │ │ ├── index.js │ │ │ └── model.js │ ├── index.js │ ├── lib │ │ ├── index.js │ │ └── tests │ │ │ └── index.js │ └── routes.js │ ├── app │ ├── actions │ │ ├── Account.js │ │ ├── index.js │ │ └── tests │ │ │ └── index.js │ ├── components │ │ ├── .stories │ │ │ └── index.js │ │ ├── AccountAccount │ │ │ └── Wrapper.jsx │ │ ├── AccountLogin │ │ │ ├── Component.jsx │ │ │ └── Wrapper.jsx │ │ ├── AccountPassword │ │ │ ├── Component.jsx │ │ │ └── Wrapper.jsx │ │ ├── AccountProfile │ │ │ └── Wrapper.jsx │ │ ├── AccountRegister │ │ │ ├── Component.jsx │ │ │ └── Wrapper.jsx │ │ ├── AuthCheck │ │ │ ├── Component.jsx │ │ │ └── Wrapper.jsx │ │ ├── AuthDenied │ │ │ └── Wrapper.jsx │ │ ├── AuthLoading │ │ │ └── Wrapper.jsx │ │ ├── NotFound │ │ │ └── Wrapper.jsx │ │ ├── Simplest.jsx │ │ └── Theme │ │ │ ├── NavDropDown.jsx │ │ │ ├── NavHeaderBrand.jsx │ │ │ ├── NavHeaderLeftContent.jsx │ │ │ ├── NavHeaderRightContent.jsx │ │ │ └── UserControls.jsx │ ├── configs │ │ └── method_stubs │ │ │ ├── index.js │ │ │ └── model.js │ ├── index.js │ ├── lib │ │ ├── AccountLogin.js │ │ ├── AccountRegister.js │ │ ├── Auth.js │ │ ├── NavHeader.js │ │ └── index.js │ └── routes.js │ ├── colors │ ├── actions │ │ ├── index.js │ │ └── tests │ │ │ └── index.js │ ├── components │ │ ├── .stories │ │ │ └── index.js │ │ └── tests │ │ │ └── index.js │ ├── configs │ │ └── method_stubs │ │ │ ├── index.js │ │ │ └── model.js │ ├── index.js │ ├── lib │ │ ├── index.js │ │ └── tests │ │ │ └── index.js │ └── routes.js │ ├── comments │ ├── actions │ │ ├── comments.js │ │ ├── index.js │ │ └── tests │ │ │ └── comments.js │ ├── components │ │ ├── .stories │ │ │ ├── comment_list.js │ │ │ ├── create_comment.js │ │ │ └── index.js │ │ ├── comment_list.js │ │ ├── create_comment.js │ │ ├── style.css │ │ └── tests │ │ │ ├── comment_list.js │ │ │ └── create_comment.js │ ├── configs │ │ └── method_stubs │ │ │ ├── comments.js │ │ │ └── index.js │ ├── containers │ │ ├── comment_list.js │ │ ├── create_comment.js │ │ └── tests │ │ │ ├── comment_list.js │ │ │ └── create_comment.js │ └── index.js │ ├── core │ ├── actions │ │ ├── index.js │ │ ├── posts.js │ │ └── tests │ │ │ └── posts.js │ ├── components │ │ ├── .stories │ │ │ ├── index.js │ │ │ ├── main_layout.js │ │ │ ├── navigation.js │ │ │ ├── newpost.js │ │ │ ├── post.js │ │ │ └── postlist.js │ │ ├── main_layout.js │ │ ├── navigation.js │ │ ├── newpost.js │ │ ├── post.js │ │ ├── postlist.js │ │ ├── style.css │ │ └── tests │ │ │ ├── main_layout.js │ │ │ ├── navigations.js │ │ │ ├── newpost.js │ │ │ ├── post.js │ │ │ └── postlist.js │ ├── configs │ │ └── method_stubs │ │ │ ├── index.js │ │ │ └── posts.js │ ├── containers │ │ ├── newpost.js │ │ ├── post.js │ │ ├── postlist.js │ │ └── tests │ │ │ ├── newpost.js │ │ │ ├── post.js │ │ │ └── postlist.js │ ├── index.js │ └── routes.js │ └── themeflatly │ ├── .src │ └── index.html │ ├── bootstrap │ ├── bootstrap.min.js │ ├── html5shiv.min.js │ ├── respond.min.js │ └── usebootstrap.min.js │ ├── components │ ├── DropDown.jsx │ ├── Layout.jsx │ ├── NavHeader.jsx │ ├── PageHeader.jsx │ └── PageTitle.jsx │ └── stylesheets │ ├── bootstrap.css │ ├── usebootstrap.css │ ├── usebootstrap.less │ └── variables.less ├── lib └── collections.js ├── package.json ├── public ├── placeholder.txt └── screens │ ├── colors.add.png │ ├── colors.collection.png │ ├── colors.single.png │ ├── homepage.png │ ├── login.png │ ├── password.png │ ├── register.png │ ├── users.add.png │ └── users.collection.png ├── server ├── configs │ └── initial_adds.js ├── main.js ├── methods │ ├── index.js │ └── posts.js └── publications │ ├── UserCurrent.js │ ├── index.js │ └── posts.js └── wallaby.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | client/modules/themeflatly/** 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .deploy/ 4 | -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.3-rc.1 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.meteor/versions -------------------------------------------------------------------------------- /.scripts/mocha_boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.scripts/mocha_boot.js -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # ChangeLog 2 | 3 | ## v0.3.1 4 | 2016-April-08 5 | * update React to version v15.x.x 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/README.md -------------------------------------------------------------------------------- /client/configs/app.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 3 | name: 'kickstarter' 4 | 5 | }; 6 | -------------------------------------------------------------------------------- /client/configs/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/configs/components.js -------------------------------------------------------------------------------- /client/configs/composers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/configs/composers.js -------------------------------------------------------------------------------- /client/configs/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/configs/context.js -------------------------------------------------------------------------------- /client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/main.js -------------------------------------------------------------------------------- /client/modules/_module_template/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/_module_template/actions/index.js -------------------------------------------------------------------------------- /client/modules/_module_template/actions/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/_module_template/components/.stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/_module_template/components/.stories/index.js -------------------------------------------------------------------------------- /client/modules/_module_template/components/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/_module_template/configs/method_stubs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/_module_template/configs/method_stubs/index.js -------------------------------------------------------------------------------- /client/modules/_module_template/configs/method_stubs/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/_module_template/configs/method_stubs/model.js -------------------------------------------------------------------------------- /client/modules/_module_template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/_module_template/index.js -------------------------------------------------------------------------------- /client/modules/_module_template/lib/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/_module_template/lib/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/_module_template/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/_module_template/routes.js -------------------------------------------------------------------------------- /client/modules/admin/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/admin/actions/index.js -------------------------------------------------------------------------------- /client/modules/admin/actions/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/admin/components/.stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/admin/components/.stories/index.js -------------------------------------------------------------------------------- /client/modules/admin/components/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/admin/configs/method_stubs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/admin/configs/method_stubs/index.js -------------------------------------------------------------------------------- /client/modules/admin/configs/method_stubs/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/admin/configs/method_stubs/model.js -------------------------------------------------------------------------------- /client/modules/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/admin/index.js -------------------------------------------------------------------------------- /client/modules/admin/lib/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/admin/lib/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/admin/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/admin/routes.js -------------------------------------------------------------------------------- /client/modules/app/actions/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/actions/Account.js -------------------------------------------------------------------------------- /client/modules/app/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/actions/index.js -------------------------------------------------------------------------------- /client/modules/app/actions/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/app/components/.stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/.stories/index.js -------------------------------------------------------------------------------- /client/modules/app/components/AccountAccount/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AccountAccount/Wrapper.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AccountLogin/Component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AccountLogin/Component.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AccountLogin/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AccountLogin/Wrapper.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AccountPassword/Component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AccountPassword/Component.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AccountPassword/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AccountPassword/Wrapper.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AccountProfile/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AccountProfile/Wrapper.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AccountRegister/Component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AccountRegister/Component.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AccountRegister/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AccountRegister/Wrapper.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AuthCheck/Component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AuthCheck/Component.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AuthCheck/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AuthCheck/Wrapper.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AuthDenied/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AuthDenied/Wrapper.jsx -------------------------------------------------------------------------------- /client/modules/app/components/AuthLoading/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/AuthLoading/Wrapper.jsx -------------------------------------------------------------------------------- /client/modules/app/components/NotFound/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/NotFound/Wrapper.jsx -------------------------------------------------------------------------------- /client/modules/app/components/Simplest.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/Simplest.jsx -------------------------------------------------------------------------------- /client/modules/app/components/Theme/NavDropDown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/Theme/NavDropDown.jsx -------------------------------------------------------------------------------- /client/modules/app/components/Theme/NavHeaderBrand.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/Theme/NavHeaderBrand.jsx -------------------------------------------------------------------------------- /client/modules/app/components/Theme/NavHeaderLeftContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/Theme/NavHeaderLeftContent.jsx -------------------------------------------------------------------------------- /client/modules/app/components/Theme/NavHeaderRightContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/Theme/NavHeaderRightContent.jsx -------------------------------------------------------------------------------- /client/modules/app/components/Theme/UserControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/components/Theme/UserControls.jsx -------------------------------------------------------------------------------- /client/modules/app/configs/method_stubs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/configs/method_stubs/index.js -------------------------------------------------------------------------------- /client/modules/app/configs/method_stubs/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/configs/method_stubs/model.js -------------------------------------------------------------------------------- /client/modules/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/index.js -------------------------------------------------------------------------------- /client/modules/app/lib/AccountLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/lib/AccountLogin.js -------------------------------------------------------------------------------- /client/modules/app/lib/AccountRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/lib/AccountRegister.js -------------------------------------------------------------------------------- /client/modules/app/lib/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/lib/Auth.js -------------------------------------------------------------------------------- /client/modules/app/lib/NavHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/lib/NavHeader.js -------------------------------------------------------------------------------- /client/modules/app/lib/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/app/routes.js -------------------------------------------------------------------------------- /client/modules/colors/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/colors/actions/index.js -------------------------------------------------------------------------------- /client/modules/colors/actions/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/colors/components/.stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/colors/components/.stories/index.js -------------------------------------------------------------------------------- /client/modules/colors/components/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/colors/configs/method_stubs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/colors/configs/method_stubs/index.js -------------------------------------------------------------------------------- /client/modules/colors/configs/method_stubs/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/colors/configs/method_stubs/model.js -------------------------------------------------------------------------------- /client/modules/colors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/colors/index.js -------------------------------------------------------------------------------- /client/modules/colors/lib/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/colors/lib/tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/modules/colors/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/colors/routes.js -------------------------------------------------------------------------------- /client/modules/comments/actions/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/actions/comments.js -------------------------------------------------------------------------------- /client/modules/comments/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/actions/index.js -------------------------------------------------------------------------------- /client/modules/comments/actions/tests/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/actions/tests/comments.js -------------------------------------------------------------------------------- /client/modules/comments/components/.stories/comment_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/components/.stories/comment_list.js -------------------------------------------------------------------------------- /client/modules/comments/components/.stories/create_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/components/.stories/create_comment.js -------------------------------------------------------------------------------- /client/modules/comments/components/.stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/components/.stories/index.js -------------------------------------------------------------------------------- /client/modules/comments/components/comment_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/components/comment_list.js -------------------------------------------------------------------------------- /client/modules/comments/components/create_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/components/create_comment.js -------------------------------------------------------------------------------- /client/modules/comments/components/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/components/style.css -------------------------------------------------------------------------------- /client/modules/comments/components/tests/comment_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/components/tests/comment_list.js -------------------------------------------------------------------------------- /client/modules/comments/components/tests/create_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/components/tests/create_comment.js -------------------------------------------------------------------------------- /client/modules/comments/configs/method_stubs/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/configs/method_stubs/comments.js -------------------------------------------------------------------------------- /client/modules/comments/configs/method_stubs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/configs/method_stubs/index.js -------------------------------------------------------------------------------- /client/modules/comments/containers/comment_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/containers/comment_list.js -------------------------------------------------------------------------------- /client/modules/comments/containers/create_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/containers/create_comment.js -------------------------------------------------------------------------------- /client/modules/comments/containers/tests/comment_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/containers/tests/comment_list.js -------------------------------------------------------------------------------- /client/modules/comments/containers/tests/create_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/containers/tests/create_comment.js -------------------------------------------------------------------------------- /client/modules/comments/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/comments/index.js -------------------------------------------------------------------------------- /client/modules/core/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/actions/index.js -------------------------------------------------------------------------------- /client/modules/core/actions/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/actions/posts.js -------------------------------------------------------------------------------- /client/modules/core/actions/tests/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/actions/tests/posts.js -------------------------------------------------------------------------------- /client/modules/core/components/.stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/.stories/index.js -------------------------------------------------------------------------------- /client/modules/core/components/.stories/main_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/.stories/main_layout.js -------------------------------------------------------------------------------- /client/modules/core/components/.stories/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/.stories/navigation.js -------------------------------------------------------------------------------- /client/modules/core/components/.stories/newpost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/.stories/newpost.js -------------------------------------------------------------------------------- /client/modules/core/components/.stories/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/.stories/post.js -------------------------------------------------------------------------------- /client/modules/core/components/.stories/postlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/.stories/postlist.js -------------------------------------------------------------------------------- /client/modules/core/components/main_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/main_layout.js -------------------------------------------------------------------------------- /client/modules/core/components/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/navigation.js -------------------------------------------------------------------------------- /client/modules/core/components/newpost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/newpost.js -------------------------------------------------------------------------------- /client/modules/core/components/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/post.js -------------------------------------------------------------------------------- /client/modules/core/components/postlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/postlist.js -------------------------------------------------------------------------------- /client/modules/core/components/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/style.css -------------------------------------------------------------------------------- /client/modules/core/components/tests/main_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/tests/main_layout.js -------------------------------------------------------------------------------- /client/modules/core/components/tests/navigations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/tests/navigations.js -------------------------------------------------------------------------------- /client/modules/core/components/tests/newpost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/tests/newpost.js -------------------------------------------------------------------------------- /client/modules/core/components/tests/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/tests/post.js -------------------------------------------------------------------------------- /client/modules/core/components/tests/postlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/components/tests/postlist.js -------------------------------------------------------------------------------- /client/modules/core/configs/method_stubs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/configs/method_stubs/index.js -------------------------------------------------------------------------------- /client/modules/core/configs/method_stubs/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/configs/method_stubs/posts.js -------------------------------------------------------------------------------- /client/modules/core/containers/newpost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/containers/newpost.js -------------------------------------------------------------------------------- /client/modules/core/containers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/containers/post.js -------------------------------------------------------------------------------- /client/modules/core/containers/postlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/containers/postlist.js -------------------------------------------------------------------------------- /client/modules/core/containers/tests/newpost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/containers/tests/newpost.js -------------------------------------------------------------------------------- /client/modules/core/containers/tests/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/containers/tests/post.js -------------------------------------------------------------------------------- /client/modules/core/containers/tests/postlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/containers/tests/postlist.js -------------------------------------------------------------------------------- /client/modules/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/index.js -------------------------------------------------------------------------------- /client/modules/core/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/core/routes.js -------------------------------------------------------------------------------- /client/modules/themeflatly/.src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/.src/index.html -------------------------------------------------------------------------------- /client/modules/themeflatly/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /client/modules/themeflatly/bootstrap/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/bootstrap/html5shiv.min.js -------------------------------------------------------------------------------- /client/modules/themeflatly/bootstrap/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/bootstrap/respond.min.js -------------------------------------------------------------------------------- /client/modules/themeflatly/bootstrap/usebootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/bootstrap/usebootstrap.min.js -------------------------------------------------------------------------------- /client/modules/themeflatly/components/DropDown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/components/DropDown.jsx -------------------------------------------------------------------------------- /client/modules/themeflatly/components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/components/Layout.jsx -------------------------------------------------------------------------------- /client/modules/themeflatly/components/NavHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/components/NavHeader.jsx -------------------------------------------------------------------------------- /client/modules/themeflatly/components/PageHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/components/PageHeader.jsx -------------------------------------------------------------------------------- /client/modules/themeflatly/components/PageTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/components/PageTitle.jsx -------------------------------------------------------------------------------- /client/modules/themeflatly/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /client/modules/themeflatly/stylesheets/usebootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/stylesheets/usebootstrap.css -------------------------------------------------------------------------------- /client/modules/themeflatly/stylesheets/usebootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/stylesheets/usebootstrap.less -------------------------------------------------------------------------------- /client/modules/themeflatly/stylesheets/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/client/modules/themeflatly/stylesheets/variables.less -------------------------------------------------------------------------------- /lib/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/lib/collections.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/package.json -------------------------------------------------------------------------------- /public/placeholder.txt: -------------------------------------------------------------------------------- 1 | This is a placeholder 2 | -------------------------------------------------------------------------------- /public/screens/colors.add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/public/screens/colors.add.png -------------------------------------------------------------------------------- /public/screens/colors.collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/public/screens/colors.collection.png -------------------------------------------------------------------------------- /public/screens/colors.single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/public/screens/colors.single.png -------------------------------------------------------------------------------- /public/screens/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/public/screens/homepage.png -------------------------------------------------------------------------------- /public/screens/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/public/screens/login.png -------------------------------------------------------------------------------- /public/screens/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/public/screens/password.png -------------------------------------------------------------------------------- /public/screens/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/public/screens/register.png -------------------------------------------------------------------------------- /public/screens/users.add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/public/screens/users.add.png -------------------------------------------------------------------------------- /public/screens/users.collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/public/screens/users.collection.png -------------------------------------------------------------------------------- /server/configs/initial_adds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/server/configs/initial_adds.js -------------------------------------------------------------------------------- /server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/server/main.js -------------------------------------------------------------------------------- /server/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/server/methods/index.js -------------------------------------------------------------------------------- /server/methods/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/server/methods/posts.js -------------------------------------------------------------------------------- /server/publications/UserCurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/server/publications/UserCurrent.js -------------------------------------------------------------------------------- /server/publications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/server/publications/index.js -------------------------------------------------------------------------------- /server/publications/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/server/publications/posts.js -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrajs/meteor-mantra-kickstarter/HEAD/wallaby.js --------------------------------------------------------------------------------