├── .gitignore ├── README.md ├── Slack-Clone-Client ├── .eslintrc.js ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── index.html │ ├── manifest.json │ └── slack-logo.png └── src │ ├── apollo.js │ ├── components │ ├── Channels.js │ ├── DirectMessageHeader.js │ ├── Header.js │ ├── MultiSelectUsers.js │ ├── RenderText.js │ ├── SendDirectMessage.js │ ├── SendMessage.js │ ├── Teams.js │ └── UI │ │ ├── AddChannelModal.js │ │ ├── DirectMessageModal.js │ │ └── InvitePeopleModal.js │ ├── containers │ ├── MessageContainer.js │ └── Sidebar.js │ ├── graphql │ ├── channel.js │ ├── message.js │ ├── team.js │ └── user.js │ ├── index.js │ ├── normalizeErrors.js │ ├── routes │ ├── CreateTeam.js │ ├── Home.js │ ├── Login.js │ ├── NotFound.js │ ├── Register.js │ ├── ViewTeam.js │ └── index.js │ ├── serviceWorker.js │ └── static │ └── sass │ ├── abstracts │ └── _variables.scss │ ├── base │ ├── _base.scss │ └── _utils.scss │ ├── components │ ├── _channels.scss │ ├── _directMessages.scss │ ├── _header.scss │ ├── _home.scss │ ├── _messages.scss │ ├── _modals.scss │ ├── _notFound.scss │ ├── _sendMessage.scss │ └── _teams.scss │ ├── layout │ └── _appLayout.scss │ ├── style.css │ ├── style.css.map │ └── style.scss ├── Slack-Clone-Server ├── .babelrc ├── .eslintrc.js ├── .gitignore ├── Dockerfile ├── mysite.template ├── package-lock.json ├── package.json ├── reset_test_db.sh ├── src │ ├── FormatErrors.js │ ├── auth.js │ ├── batchFunctions.js │ ├── index.js │ ├── models │ │ ├── channel.js │ │ ├── directMessages.js │ │ ├── index.js │ │ ├── member.js │ │ ├── message.js │ │ ├── privateChannelMember.js │ │ ├── team.js │ │ └── user.js │ ├── permissions.js │ ├── pubsub.js │ ├── resolvers │ │ ├── channel.js │ │ ├── message.js │ │ ├── team.js │ │ └── user.js │ └── schema │ │ ├── channel.js │ │ ├── error.js │ │ ├── message.js │ │ ├── team.js │ │ └── user.js ├── tests │ └── user.spec.js └── wait-for-it.sh ├── slack-demo-2.gif ├── slack-homepage.png └── slack-user.png /.gitignore: -------------------------------------------------------------------------------- 1 | file-uploads 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/README.md -------------------------------------------------------------------------------- /Slack-Clone-Client/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/.eslintrc.js -------------------------------------------------------------------------------- /Slack-Clone-Client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/.gitignore -------------------------------------------------------------------------------- /Slack-Clone-Client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/README.md -------------------------------------------------------------------------------- /Slack-Clone-Client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/package-lock.json -------------------------------------------------------------------------------- /Slack-Clone-Client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/package.json -------------------------------------------------------------------------------- /Slack-Clone-Client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/public/index.html -------------------------------------------------------------------------------- /Slack-Clone-Client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/public/manifest.json -------------------------------------------------------------------------------- /Slack-Clone-Client/public/slack-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/public/slack-logo.png -------------------------------------------------------------------------------- /Slack-Clone-Client/src/apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/apollo.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/Channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/Channels.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/DirectMessageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/DirectMessageHeader.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/Header.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/MultiSelectUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/MultiSelectUsers.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/RenderText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/RenderText.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/SendDirectMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/SendDirectMessage.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/SendMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/SendMessage.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/Teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/Teams.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/UI/AddChannelModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/UI/AddChannelModal.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/UI/DirectMessageModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/UI/DirectMessageModal.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/components/UI/InvitePeopleModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/components/UI/InvitePeopleModal.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/containers/MessageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/containers/MessageContainer.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/containers/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/containers/Sidebar.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/graphql/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/graphql/channel.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/graphql/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/graphql/message.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/graphql/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/graphql/team.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/graphql/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/graphql/user.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/index.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/normalizeErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/normalizeErrors.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/routes/CreateTeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/routes/CreateTeam.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/routes/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/routes/Home.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/routes/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/routes/Login.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/routes/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/routes/NotFound.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/routes/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/routes/Register.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/routes/ViewTeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/routes/ViewTeam.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/routes/index.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/serviceWorker.js -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/abstracts/_variables.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/base/_base.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/base/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/base/_utils.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/components/_channels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/components/_channels.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/components/_directMessages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/components/_directMessages.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/components/_header.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/components/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/components/_home.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/components/_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/components/_messages.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/components/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/components/_modals.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/components/_notFound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/components/_notFound.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/components/_sendMessage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/components/_sendMessage.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/components/_teams.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/components/_teams.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/layout/_appLayout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/layout/_appLayout.scss -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/style.css -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/style.css.map -------------------------------------------------------------------------------- /Slack-Clone-Client/src/static/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Client/src/static/sass/style.scss -------------------------------------------------------------------------------- /Slack-Clone-Server/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/.babelrc -------------------------------------------------------------------------------- /Slack-Clone-Server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/.eslintrc.js -------------------------------------------------------------------------------- /Slack-Clone-Server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/.gitignore -------------------------------------------------------------------------------- /Slack-Clone-Server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/Dockerfile -------------------------------------------------------------------------------- /Slack-Clone-Server/mysite.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/mysite.template -------------------------------------------------------------------------------- /Slack-Clone-Server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/package-lock.json -------------------------------------------------------------------------------- /Slack-Clone-Server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/package.json -------------------------------------------------------------------------------- /Slack-Clone-Server/reset_test_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/reset_test_db.sh -------------------------------------------------------------------------------- /Slack-Clone-Server/src/FormatErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/FormatErrors.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/auth.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/batchFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/batchFunctions.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/index.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/models/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/models/channel.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/models/directMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/models/directMessages.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/models/index.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/models/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/models/member.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/models/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/models/message.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/models/privateChannelMember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/models/privateChannelMember.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/models/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/models/team.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/models/user.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/permissions.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/pubsub.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/resolvers/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/resolvers/channel.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/resolvers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/resolvers/message.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/resolvers/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/resolvers/team.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/resolvers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/resolvers/user.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/schema/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/schema/channel.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/schema/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/schema/error.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/schema/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/schema/message.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/schema/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/schema/team.js -------------------------------------------------------------------------------- /Slack-Clone-Server/src/schema/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/src/schema/user.js -------------------------------------------------------------------------------- /Slack-Clone-Server/tests/user.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/tests/user.spec.js -------------------------------------------------------------------------------- /Slack-Clone-Server/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/Slack-Clone-Server/wait-for-it.sh -------------------------------------------------------------------------------- /slack-demo-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/slack-demo-2.gif -------------------------------------------------------------------------------- /slack-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/slack-homepage.png -------------------------------------------------------------------------------- /slack-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devandres-tech/Slack-Clone/HEAD/slack-user.png --------------------------------------------------------------------------------