├── .dockerignore
├── docs
└── assets
│ ├── slack-scopes.png
│ ├── slack-bot-token.png
│ ├── slack-create-app.png
│ ├── slack-test-message.png
│ └── recap-slack-settings.png
├── .gitmodules
├── LICENSE
├── README.md
├── docker-compose.yml
├── .github
└── assets
│ └── logo.svg
└── logo.svg
/.dockerignore:
--------------------------------------------------------------------------------
1 | ui/node_modules
2 | backend/node_modules
3 |
--------------------------------------------------------------------------------
/docs/assets/slack-scopes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/infinite-cat/recap.dev-server/HEAD/docs/assets/slack-scopes.png
--------------------------------------------------------------------------------
/docs/assets/slack-bot-token.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/infinite-cat/recap.dev-server/HEAD/docs/assets/slack-bot-token.png
--------------------------------------------------------------------------------
/docs/assets/slack-create-app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/infinite-cat/recap.dev-server/HEAD/docs/assets/slack-create-app.png
--------------------------------------------------------------------------------
/docs/assets/slack-test-message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/infinite-cat/recap.dev-server/HEAD/docs/assets/slack-test-message.png
--------------------------------------------------------------------------------
/docs/assets/recap-slack-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/infinite-cat/recap.dev-server/HEAD/docs/assets/recap-slack-settings.png
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "build/recap.dev-ui"]
2 | path = build/recap.dev-ui
3 | url = git@github.com:infinite-cat/recap.dev-ui.git
4 | [submodule "build/recap.dev-backend"]
5 | path = build/recap.dev-backend
6 | url = git@github.com:infinite-cat/recap.dev-backend.git
7 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Arseny Yankovski
4 |
5 | Copyright (c) 2020 Eugene Draitsev
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy
8 | of this software and associated documentation files (the "Software"), to deal
9 | in the Software without restriction, including without limitation the rights
10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 | copies of the Software, and to permit persons to whom the Software is
12 | furnished to do so, subject to the following conditions:
13 |
14 | The above copyright notice and this permission notice shall be included in all
15 | copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 | SOFTWARE.
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |