├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── LICENSE.txt ├── README.markdown ├── client ├── components │ ├── comments.jsx │ ├── errors.jsx │ ├── header.jsx │ ├── notifications.jsx │ ├── posts.jsx │ └── root.jsx ├── helpers │ ├── config.js │ ├── errors.js │ └── handlebars.js ├── main.html └── stylesheets │ └── style.css ├── lib ├── collections │ ├── comments.js │ ├── notifications.js │ └── posts.js ├── permissions.js └── router.jsx └── server ├── fixtures.js └── publications.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.1.0.2 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/.meteor/versions -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/README.markdown -------------------------------------------------------------------------------- /client/components/comments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/components/comments.jsx -------------------------------------------------------------------------------- /client/components/errors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/components/errors.jsx -------------------------------------------------------------------------------- /client/components/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/components/header.jsx -------------------------------------------------------------------------------- /client/components/notifications.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/components/notifications.jsx -------------------------------------------------------------------------------- /client/components/posts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/components/posts.jsx -------------------------------------------------------------------------------- /client/components/root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/components/root.jsx -------------------------------------------------------------------------------- /client/helpers/config.js: -------------------------------------------------------------------------------- 1 | Accounts.ui.config({ 2 | passwordSignupFields: 'USERNAME_ONLY' 3 | }); -------------------------------------------------------------------------------- /client/helpers/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/helpers/errors.js -------------------------------------------------------------------------------- /client/helpers/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/helpers/handlebars.js -------------------------------------------------------------------------------- /client/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/main.html -------------------------------------------------------------------------------- /client/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/client/stylesheets/style.css -------------------------------------------------------------------------------- /lib/collections/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/lib/collections/comments.js -------------------------------------------------------------------------------- /lib/collections/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/lib/collections/notifications.js -------------------------------------------------------------------------------- /lib/collections/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/lib/collections/posts.js -------------------------------------------------------------------------------- /lib/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/lib/permissions.js -------------------------------------------------------------------------------- /lib/router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/lib/router.jsx -------------------------------------------------------------------------------- /server/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/server/fixtures.js -------------------------------------------------------------------------------- /server/publications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpraburaj/react-microscope/HEAD/server/publications.js --------------------------------------------------------------------------------