├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .jsbeautifyrc ├── .jscsrc ├── LICENSE ├── README.md ├── app ├── cerebral │ ├── actions │ │ └── index.js │ ├── controller.js │ └── signals │ │ └── index.js ├── components │ ├── admin │ │ └── home.jsx │ ├── app.jsx │ ├── home.jsx │ ├── layouts │ │ ├── admin.jsx │ │ └── main.jsx │ ├── post.jsx │ └── posts.jsx ├── feathers_client.js ├── main.js └── router.js ├── devServer.js ├── feathers ├── auth_setup.js ├── pg_setup.js ├── service_factory.js └── services │ ├── index.js │ ├── post_service.js │ └── user_service.js ├── index.html ├── package.json ├── public └── .gitkeep ├── webpack.config.dev.js └── webpack.config.prod.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | *.log 5 | coverage 6 | -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/.jscsrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/README.md -------------------------------------------------------------------------------- /app/cerebral/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/cerebral/actions/index.js -------------------------------------------------------------------------------- /app/cerebral/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/cerebral/controller.js -------------------------------------------------------------------------------- /app/cerebral/signals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/cerebral/signals/index.js -------------------------------------------------------------------------------- /app/components/admin/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/components/admin/home.jsx -------------------------------------------------------------------------------- /app/components/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/components/app.jsx -------------------------------------------------------------------------------- /app/components/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/components/home.jsx -------------------------------------------------------------------------------- /app/components/layouts/admin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/components/layouts/admin.jsx -------------------------------------------------------------------------------- /app/components/layouts/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/components/layouts/main.jsx -------------------------------------------------------------------------------- /app/components/post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/components/post.jsx -------------------------------------------------------------------------------- /app/components/posts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/components/posts.jsx -------------------------------------------------------------------------------- /app/feathers_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/feathers_client.js -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- 1 | import 'router'; 2 | -------------------------------------------------------------------------------- /app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/app/router.js -------------------------------------------------------------------------------- /devServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/devServer.js -------------------------------------------------------------------------------- /feathers/auth_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/feathers/auth_setup.js -------------------------------------------------------------------------------- /feathers/pg_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/feathers/pg_setup.js -------------------------------------------------------------------------------- /feathers/service_factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/feathers/service_factory.js -------------------------------------------------------------------------------- /feathers/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/feathers/services/index.js -------------------------------------------------------------------------------- /feathers/services/post_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/feathers/services/post_service.js -------------------------------------------------------------------------------- /feathers/services/user_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/feathers/services/user_service.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/package.json -------------------------------------------------------------------------------- /public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomnerd/feathers-react-pg/HEAD/webpack.config.prod.js --------------------------------------------------------------------------------