├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── client ├── .eslintignore ├── .eslintrc ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── Staticfile │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ ├── register.png │ └── signin.png └── src │ ├── actionCreators │ ├── authActionCreator.js │ ├── authActionCreator.test.js │ ├── dashboardActionCreator.js │ └── dashboardActionCreator.test.js │ ├── actions │ ├── auth.js │ └── dashboard.js │ ├── app.component.jsx │ ├── components │ ├── AuthRoute │ │ ├── AuthRoute.jsx │ │ └── AuthRoute.test.jsx │ ├── DashboardPage │ │ ├── DashboardPage.jsx │ │ └── DashboardPage.test.js │ ├── NavigationBar │ │ ├── NavigationBar.jsx │ │ └── NavigationBar.test.js │ ├── RegisterPage │ │ ├── RegisterPage.jsx │ │ └── RegisterPage.test.js │ └── SignInPage │ │ ├── SignInPage.jsx │ │ └── SignInPage.test.js │ ├── index.css │ ├── index.js │ ├── index.test.js │ ├── reducers │ ├── auth.js │ ├── auth.test.js │ ├── dashboard.js │ └── index.js │ ├── setupTests.js │ └── utils │ ├── api.js │ ├── constants.js │ └── cookie.js └── server ├── .sequelizerc ├── controller ├── DashboardController.js └── UserController.js ├── db ├── config │ └── config.json ├── migrations │ └── 20180311035412-create-user.js ├── models │ ├── index.js │ └── user.js └── seeders │ └── 20180311154227-demo-users.js ├── package-lock.json ├── package.json ├── server.js └── utils └── constants.js /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: TQtNGWzXjge8bo2QT6Py8RuoeYtqaB8UU 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/README.md -------------------------------------------------------------------------------- /client/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | build/ 3 | src/registerServiceWorker.js 4 | -------------------------------------------------------------------------------- /client/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/.eslintrc -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/Staticfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/public/register.png -------------------------------------------------------------------------------- /client/public/signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/public/signin.png -------------------------------------------------------------------------------- /client/src/actionCreators/authActionCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/actionCreators/authActionCreator.js -------------------------------------------------------------------------------- /client/src/actionCreators/authActionCreator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/actionCreators/authActionCreator.test.js -------------------------------------------------------------------------------- /client/src/actionCreators/dashboardActionCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/actionCreators/dashboardActionCreator.js -------------------------------------------------------------------------------- /client/src/actionCreators/dashboardActionCreator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/actionCreators/dashboardActionCreator.test.js -------------------------------------------------------------------------------- /client/src/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/actions/auth.js -------------------------------------------------------------------------------- /client/src/actions/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/actions/dashboard.js -------------------------------------------------------------------------------- /client/src/app.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/app.component.jsx -------------------------------------------------------------------------------- /client/src/components/AuthRoute/AuthRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/AuthRoute/AuthRoute.jsx -------------------------------------------------------------------------------- /client/src/components/AuthRoute/AuthRoute.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/AuthRoute/AuthRoute.test.jsx -------------------------------------------------------------------------------- /client/src/components/DashboardPage/DashboardPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/DashboardPage/DashboardPage.jsx -------------------------------------------------------------------------------- /client/src/components/DashboardPage/DashboardPage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/DashboardPage/DashboardPage.test.js -------------------------------------------------------------------------------- /client/src/components/NavigationBar/NavigationBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/NavigationBar/NavigationBar.jsx -------------------------------------------------------------------------------- /client/src/components/NavigationBar/NavigationBar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/NavigationBar/NavigationBar.test.js -------------------------------------------------------------------------------- /client/src/components/RegisterPage/RegisterPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/RegisterPage/RegisterPage.jsx -------------------------------------------------------------------------------- /client/src/components/RegisterPage/RegisterPage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/RegisterPage/RegisterPage.test.js -------------------------------------------------------------------------------- /client/src/components/SignInPage/SignInPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/SignInPage/SignInPage.jsx -------------------------------------------------------------------------------- /client/src/components/SignInPage/SignInPage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/components/SignInPage/SignInPage.test.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/index.test.js -------------------------------------------------------------------------------- /client/src/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/reducers/auth.js -------------------------------------------------------------------------------- /client/src/reducers/auth.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/reducers/auth.test.js -------------------------------------------------------------------------------- /client/src/reducers/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/reducers/dashboard.js -------------------------------------------------------------------------------- /client/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/reducers/index.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /client/src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/utils/api.js -------------------------------------------------------------------------------- /client/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/utils/constants.js -------------------------------------------------------------------------------- /client/src/utils/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/client/src/utils/cookie.js -------------------------------------------------------------------------------- /server/.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/.sequelizerc -------------------------------------------------------------------------------- /server/controller/DashboardController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/controller/DashboardController.js -------------------------------------------------------------------------------- /server/controller/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/controller/UserController.js -------------------------------------------------------------------------------- /server/db/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/db/config/config.json -------------------------------------------------------------------------------- /server/db/migrations/20180311035412-create-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/db/migrations/20180311035412-create-user.js -------------------------------------------------------------------------------- /server/db/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/db/models/index.js -------------------------------------------------------------------------------- /server/db/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/db/models/user.js -------------------------------------------------------------------------------- /server/db/seeders/20180311154227-demo-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/db/seeders/20180311154227-demo-users.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/package.json -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/server.js -------------------------------------------------------------------------------- /server/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavin-prajapati/react-redux-node-auth-starter/HEAD/server/utils/constants.js --------------------------------------------------------------------------------