├── .gitignore ├── README.md ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── assets │ │ └── images │ │ │ ├── 404.svg │ │ │ ├── coming-soon.svg │ │ │ ├── headerImage.svg │ │ │ └── no-posts.svg │ ├── components │ │ ├── alert │ │ │ ├── Alert.component.jsx │ │ │ └── Alert.styles.css │ │ ├── auth-left-pane │ │ │ ├── AuthLeftPane.component.jsx │ │ │ └── AuthLeftPane.styles.css │ │ ├── comment-form │ │ │ └── CommentForm.component.jsx │ │ ├── comment │ │ │ ├── Comment.component.jsx │ │ │ └── Comment.styles.css │ │ ├── follow-list │ │ │ ├── FollowList.component.jsx │ │ │ └── FollowList.styles.css │ │ ├── footer │ │ │ ├── Footer.component.jsx │ │ │ └── Footer.styles.css │ │ ├── github-repo-cards │ │ │ ├── GithubRepoCards.component.jsx │ │ │ └── GithubRepoCards.styles.css │ │ ├── navbar │ │ │ ├── Navbar.component.jsx │ │ │ └── Navbar.styles.css │ │ ├── paginator │ │ │ ├── Paginator.component.jsx │ │ │ └── Paginator.styles.css │ │ ├── post-card │ │ │ ├── PostCard.component.jsx │ │ │ └── PostCard.styles.css │ │ ├── post-carousel │ │ │ ├── PostCarousel.component.jsx │ │ │ └── PostCarousel.styles.css │ │ ├── post-header │ │ │ ├── PostHeader.component.jsx │ │ │ └── PostHeader.styles.css │ │ ├── post-tiles │ │ │ ├── PostTiles.component.jsx │ │ │ └── PostTiles.styles.css │ │ ├── private-route │ │ │ └── PrivateRoute.component.jsx │ │ ├── profile-about │ │ │ ├── ProfileAbout.component.jsx │ │ │ └── ProfileAbout.styles.css │ │ ├── profile-card │ │ │ ├── ProfileCard.component.jsx │ │ │ └── ProfileCard.styles.css │ │ ├── profile-header │ │ │ ├── ProfileHeader.component.jsx │ │ │ └── ProfileHeader.styles.css │ │ ├── profile-input │ │ │ └── ProfileInput.component.jsx │ │ ├── profile-posts │ │ │ ├── ProfilePosts.component.jsx │ │ │ └── ProfilePosts.styles.css │ │ ├── profile-tabs │ │ │ ├── ProfileTabs.component.jsx │ │ │ └── ProfileTabs.styles.css │ │ └── spinner │ │ │ ├── Spinner.component.jsx │ │ │ └── spinner.gif │ ├── hooks │ │ └── usePaginator.js │ ├── index.js │ ├── pages │ │ ├── add-post-page │ │ │ ├── AddPostPage.component.jsx │ │ │ └── AddPostPage.styles.css │ │ ├── coming-soon │ │ │ ├── ComingSoonPage.component.jsx │ │ │ └── ComingSoonPage.styles.css │ │ ├── create-profile-page │ │ │ ├── CreateProfilePage.component.jsx │ │ │ └── CreateProfilePage.styles.css │ │ ├── dashboard-page │ │ │ └── DashboardPage.component.jsx │ │ ├── edit-profile-page │ │ │ └── EditProfilePage.component.jsx │ │ ├── feed-page │ │ │ ├── FeedPage.component.jsx │ │ │ └── FeedPage.styles.css │ │ ├── landing-page │ │ │ ├── LandingPage.component.jsx │ │ │ └── LandingPage.styles.css │ │ ├── not-found-page │ │ │ ├── NotFoundPage.component.jsx │ │ │ └── NotFoundPage.styles.css │ │ ├── post-page │ │ │ └── PostPage.component.jsx │ │ ├── posts-page │ │ │ └── PostsPage.component.jsx │ │ ├── profile-page │ │ │ └── ProfilePage.component.jsx │ │ ├── profiles-page │ │ │ └── ProfilesPage.component.jsx │ │ ├── signin-page │ │ │ ├── SigninPage.component.jsx │ │ │ └── SigninPage.styles.css │ │ └── signup-page │ │ │ ├── SignupPage.component.jsx │ │ │ └── SignupPage.styles.css │ ├── redux │ │ ├── alert │ │ │ ├── alert.actions.js │ │ │ ├── alert.reducer.js │ │ │ └── alert.types.js │ │ ├── auth │ │ │ ├── auth.actions.js │ │ │ ├── auth.reducer.js │ │ │ └── auth.types.js │ │ ├── post │ │ │ ├── post.actions.js │ │ │ ├── post.reducer.js │ │ │ └── post.types.js │ │ ├── posts │ │ │ ├── posts.actions.js │ │ │ ├── posts.reducer.js │ │ │ └── posts.types.js │ │ ├── profile │ │ │ ├── profile.actions.js │ │ │ ├── profile.reducer.js │ │ │ └── profile.types.js │ │ ├── root-reducer.js │ │ └── store.js │ └── utils │ │ └── setAuthToken.js └── yarn.lock ├── config └── db.js ├── middleware ├── auth.js └── cloudinary.js ├── models ├── Post.js ├── Profile.js └── User.js ├── package.json ├── routes └── api │ ├── auth.js │ ├── posts.js │ ├── profile.js │ └── users.js ├── server.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/assets/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/assets/images/404.svg -------------------------------------------------------------------------------- /client/src/assets/images/coming-soon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/assets/images/coming-soon.svg -------------------------------------------------------------------------------- /client/src/assets/images/headerImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/assets/images/headerImage.svg -------------------------------------------------------------------------------- /client/src/assets/images/no-posts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/assets/images/no-posts.svg -------------------------------------------------------------------------------- /client/src/components/alert/Alert.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/alert/Alert.component.jsx -------------------------------------------------------------------------------- /client/src/components/alert/Alert.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/alert/Alert.styles.css -------------------------------------------------------------------------------- /client/src/components/auth-left-pane/AuthLeftPane.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/auth-left-pane/AuthLeftPane.component.jsx -------------------------------------------------------------------------------- /client/src/components/auth-left-pane/AuthLeftPane.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/auth-left-pane/AuthLeftPane.styles.css -------------------------------------------------------------------------------- /client/src/components/comment-form/CommentForm.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/comment-form/CommentForm.component.jsx -------------------------------------------------------------------------------- /client/src/components/comment/Comment.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/comment/Comment.component.jsx -------------------------------------------------------------------------------- /client/src/components/comment/Comment.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/comment/Comment.styles.css -------------------------------------------------------------------------------- /client/src/components/follow-list/FollowList.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/follow-list/FollowList.component.jsx -------------------------------------------------------------------------------- /client/src/components/follow-list/FollowList.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/follow-list/FollowList.styles.css -------------------------------------------------------------------------------- /client/src/components/footer/Footer.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/footer/Footer.component.jsx -------------------------------------------------------------------------------- /client/src/components/footer/Footer.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/footer/Footer.styles.css -------------------------------------------------------------------------------- /client/src/components/github-repo-cards/GithubRepoCards.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/github-repo-cards/GithubRepoCards.component.jsx -------------------------------------------------------------------------------- /client/src/components/github-repo-cards/GithubRepoCards.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/github-repo-cards/GithubRepoCards.styles.css -------------------------------------------------------------------------------- /client/src/components/navbar/Navbar.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/navbar/Navbar.component.jsx -------------------------------------------------------------------------------- /client/src/components/navbar/Navbar.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/navbar/Navbar.styles.css -------------------------------------------------------------------------------- /client/src/components/paginator/Paginator.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/paginator/Paginator.component.jsx -------------------------------------------------------------------------------- /client/src/components/paginator/Paginator.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/paginator/Paginator.styles.css -------------------------------------------------------------------------------- /client/src/components/post-card/PostCard.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/post-card/PostCard.component.jsx -------------------------------------------------------------------------------- /client/src/components/post-card/PostCard.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/post-card/PostCard.styles.css -------------------------------------------------------------------------------- /client/src/components/post-carousel/PostCarousel.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/post-carousel/PostCarousel.component.jsx -------------------------------------------------------------------------------- /client/src/components/post-carousel/PostCarousel.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/post-carousel/PostCarousel.styles.css -------------------------------------------------------------------------------- /client/src/components/post-header/PostHeader.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/post-header/PostHeader.component.jsx -------------------------------------------------------------------------------- /client/src/components/post-header/PostHeader.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/post-header/PostHeader.styles.css -------------------------------------------------------------------------------- /client/src/components/post-tiles/PostTiles.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/post-tiles/PostTiles.component.jsx -------------------------------------------------------------------------------- /client/src/components/post-tiles/PostTiles.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/post-tiles/PostTiles.styles.css -------------------------------------------------------------------------------- /client/src/components/private-route/PrivateRoute.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/private-route/PrivateRoute.component.jsx -------------------------------------------------------------------------------- /client/src/components/profile-about/ProfileAbout.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-about/ProfileAbout.component.jsx -------------------------------------------------------------------------------- /client/src/components/profile-about/ProfileAbout.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-about/ProfileAbout.styles.css -------------------------------------------------------------------------------- /client/src/components/profile-card/ProfileCard.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-card/ProfileCard.component.jsx -------------------------------------------------------------------------------- /client/src/components/profile-card/ProfileCard.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-card/ProfileCard.styles.css -------------------------------------------------------------------------------- /client/src/components/profile-header/ProfileHeader.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-header/ProfileHeader.component.jsx -------------------------------------------------------------------------------- /client/src/components/profile-header/ProfileHeader.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-header/ProfileHeader.styles.css -------------------------------------------------------------------------------- /client/src/components/profile-input/ProfileInput.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-input/ProfileInput.component.jsx -------------------------------------------------------------------------------- /client/src/components/profile-posts/ProfilePosts.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-posts/ProfilePosts.component.jsx -------------------------------------------------------------------------------- /client/src/components/profile-posts/ProfilePosts.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-posts/ProfilePosts.styles.css -------------------------------------------------------------------------------- /client/src/components/profile-tabs/ProfileTabs.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-tabs/ProfileTabs.component.jsx -------------------------------------------------------------------------------- /client/src/components/profile-tabs/ProfileTabs.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/profile-tabs/ProfileTabs.styles.css -------------------------------------------------------------------------------- /client/src/components/spinner/Spinner.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/spinner/Spinner.component.jsx -------------------------------------------------------------------------------- /client/src/components/spinner/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/components/spinner/spinner.gif -------------------------------------------------------------------------------- /client/src/hooks/usePaginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/hooks/usePaginator.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/pages/add-post-page/AddPostPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/add-post-page/AddPostPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/add-post-page/AddPostPage.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/add-post-page/AddPostPage.styles.css -------------------------------------------------------------------------------- /client/src/pages/coming-soon/ComingSoonPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/coming-soon/ComingSoonPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/coming-soon/ComingSoonPage.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/coming-soon/ComingSoonPage.styles.css -------------------------------------------------------------------------------- /client/src/pages/create-profile-page/CreateProfilePage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/create-profile-page/CreateProfilePage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/create-profile-page/CreateProfilePage.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/create-profile-page/CreateProfilePage.styles.css -------------------------------------------------------------------------------- /client/src/pages/dashboard-page/DashboardPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/dashboard-page/DashboardPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/edit-profile-page/EditProfilePage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/edit-profile-page/EditProfilePage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/feed-page/FeedPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/feed-page/FeedPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/feed-page/FeedPage.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/feed-page/FeedPage.styles.css -------------------------------------------------------------------------------- /client/src/pages/landing-page/LandingPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/landing-page/LandingPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/landing-page/LandingPage.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/landing-page/LandingPage.styles.css -------------------------------------------------------------------------------- /client/src/pages/not-found-page/NotFoundPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/not-found-page/NotFoundPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/not-found-page/NotFoundPage.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/not-found-page/NotFoundPage.styles.css -------------------------------------------------------------------------------- /client/src/pages/post-page/PostPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/post-page/PostPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/posts-page/PostsPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/posts-page/PostsPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/profile-page/ProfilePage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/profile-page/ProfilePage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/profiles-page/ProfilesPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/profiles-page/ProfilesPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/signin-page/SigninPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/signin-page/SigninPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/signin-page/SigninPage.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/signin-page/SigninPage.styles.css -------------------------------------------------------------------------------- /client/src/pages/signup-page/SignupPage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/signup-page/SignupPage.component.jsx -------------------------------------------------------------------------------- /client/src/pages/signup-page/SignupPage.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/pages/signup-page/SignupPage.styles.css -------------------------------------------------------------------------------- /client/src/redux/alert/alert.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/alert/alert.actions.js -------------------------------------------------------------------------------- /client/src/redux/alert/alert.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/alert/alert.reducer.js -------------------------------------------------------------------------------- /client/src/redux/alert/alert.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/alert/alert.types.js -------------------------------------------------------------------------------- /client/src/redux/auth/auth.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/auth/auth.actions.js -------------------------------------------------------------------------------- /client/src/redux/auth/auth.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/auth/auth.reducer.js -------------------------------------------------------------------------------- /client/src/redux/auth/auth.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/auth/auth.types.js -------------------------------------------------------------------------------- /client/src/redux/post/post.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/post/post.actions.js -------------------------------------------------------------------------------- /client/src/redux/post/post.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/post/post.reducer.js -------------------------------------------------------------------------------- /client/src/redux/post/post.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/post/post.types.js -------------------------------------------------------------------------------- /client/src/redux/posts/posts.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/posts/posts.actions.js -------------------------------------------------------------------------------- /client/src/redux/posts/posts.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/posts/posts.reducer.js -------------------------------------------------------------------------------- /client/src/redux/posts/posts.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/posts/posts.types.js -------------------------------------------------------------------------------- /client/src/redux/profile/profile.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/profile/profile.actions.js -------------------------------------------------------------------------------- /client/src/redux/profile/profile.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/profile/profile.reducer.js -------------------------------------------------------------------------------- /client/src/redux/profile/profile.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/profile/profile.types.js -------------------------------------------------------------------------------- /client/src/redux/root-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/root-reducer.js -------------------------------------------------------------------------------- /client/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/redux/store.js -------------------------------------------------------------------------------- /client/src/utils/setAuthToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/src/utils/setAuthToken.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/config/db.js -------------------------------------------------------------------------------- /middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/middleware/auth.js -------------------------------------------------------------------------------- /middleware/cloudinary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/middleware/cloudinary.js -------------------------------------------------------------------------------- /models/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/models/Post.js -------------------------------------------------------------------------------- /models/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/models/Profile.js -------------------------------------------------------------------------------- /models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/models/User.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/package.json -------------------------------------------------------------------------------- /routes/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/routes/api/auth.js -------------------------------------------------------------------------------- /routes/api/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/routes/api/posts.js -------------------------------------------------------------------------------- /routes/api/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/routes/api/profile.js -------------------------------------------------------------------------------- /routes/api/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/routes/api/users.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/server.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnitinr/driwwwle-old/HEAD/yarn.lock --------------------------------------------------------------------------------