├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── ci.yml │ ├── config.yml │ ├── documentation.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── config.yml ├── readme │ └── images │ │ ├── community.svg │ │ ├── mesh-layer5.png │ │ ├── slack-128.png │ │ └── slack-dark-128.png ├── stale.yml ├── welcome │ └── Layer5-celebration.png └── workflows │ ├── invitations.yml │ └── slack.yml ├── .gitignore ├── .golangci.yml ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING-gitflow.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── _config.yml ├── index.html └── landing.html /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/ISSUE_TEMPLATE/ci.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/readme/images/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/readme/images/community.svg -------------------------------------------------------------------------------- /.github/readme/images/mesh-layer5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/readme/images/mesh-layer5.png -------------------------------------------------------------------------------- /.github/readme/images/slack-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/readme/images/slack-128.png -------------------------------------------------------------------------------- /.github/readme/images/slack-dark-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/readme/images/slack-dark-128.png -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/welcome/Layer5-celebration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/welcome/Layer5-celebration.png -------------------------------------------------------------------------------- /.github/workflows/invitations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/workflows/invitations.yml -------------------------------------------------------------------------------- /.github/workflows/slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.github/workflows/slack.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | slack.layer5.io 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING-gitflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/CONTRIBUTING-gitflow.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - jekyll-redirect-from 3 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_to: https://join.slack.com/t/mesheryio/shared_invite/zt-3k39ukubo-dIqYxxysV2Dd1Jf06wiqqA 3 | --- 4 | -------------------------------------------------------------------------------- /landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/slack/HEAD/landing.html --------------------------------------------------------------------------------