├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config.toml ├── config └── ConfigType.go ├── external ├── agent │ └── ja-netfilter.zip ├── certificate │ └── root.key └── data │ ├── plugin.json │ └── product.json ├── go.mod ├── go.sum ├── helper ├── Agent.go ├── Certificate.go ├── License.go ├── Products.go ├── Refresh.go ├── Types.go └── Util.go ├── main.go ├── router.go ├── run.sh ├── static ├── css │ └── index.css ├── images │ └── icons.svg └── js │ ├── index.js │ └── jquery.js └── templates ├── articles.html └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/config.toml -------------------------------------------------------------------------------- /config/ConfigType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/config/ConfigType.go -------------------------------------------------------------------------------- /external/agent/ja-netfilter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/external/agent/ja-netfilter.zip -------------------------------------------------------------------------------- /external/certificate/root.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/external/certificate/root.key -------------------------------------------------------------------------------- /external/data/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/external/data/plugin.json -------------------------------------------------------------------------------- /external/data/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/external/data/product.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/go.sum -------------------------------------------------------------------------------- /helper/Agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/helper/Agent.go -------------------------------------------------------------------------------- /helper/Certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/helper/Certificate.go -------------------------------------------------------------------------------- /helper/License.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/helper/License.go -------------------------------------------------------------------------------- /helper/Products.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/helper/Products.go -------------------------------------------------------------------------------- /helper/Refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/helper/Refresh.go -------------------------------------------------------------------------------- /helper/Types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/helper/Types.go -------------------------------------------------------------------------------- /helper/Util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/helper/Util.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/main.go -------------------------------------------------------------------------------- /router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/router.go -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/run.sh -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/images/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/static/images/icons.svg -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/static/js/index.js -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /templates/articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/templates/articles.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/Jetbrains-Helper-Go/HEAD/templates/index.html --------------------------------------------------------------------------------