2020-07-30 02:01:40 +00:00
|
|
|
<html>
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="ui segment basic fadebg">
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui segment center aligned segment basic very padded">
|
|
|
|
<div class="instruments"></div>
|
|
|
|
<h1 class="ui inverted header title-header">
|
|
|
|
CONDUCTOR
|
|
|
|
<div class="sub header">A Development Stack Launcher</div>
|
|
|
|
</h1>
|
|
|
|
<p style="font-size: 1.2em; color: white">
|
|
|
|
Conductor helps launch and manage the environment when developing applications that have multiple components.
|
2020-07-30 02:57:21 +00:00
|
|
|
It can be configured to launch an applications stack in part, or in full, and manage environment settings.
|
2020-07-30 02:01:40 +00:00
|
|
|
This helps keep application specific environment variables out of dotfiles and reduce the number of terminal
|
|
|
|
windows that need to be running during development.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-25 07:23:44 +00:00
|
|
|
<div class="ui basic segment center aligned">
|
2020-07-30 14:38:13 +00:00
|
|
|
<div class="ui inverted huge header" style="font-weight: bold;">
|
|
|
|
Binary Download
|
|
|
|
</div>
|
|
|
|
<a class="ui basic huge inverted button"
|
|
|
|
href="https://github.com/5Sigma/conductor/releases/latest/download/conductor-windows.zip">
|
2022-09-25 07:23:44 +00:00
|
|
|
<i class="ui life linux icon"></i> Download
|
2020-07-30 14:38:13 +00:00
|
|
|
</a>
|
2022-09-25 07:23:44 +00:00
|
|
|
<p style="color: white;margin-top: 15px;font-size: 1.2em">Conductor currently only support Linux based systems</p>
|
2020-07-30 14:38:13 +00:00
|
|
|
</div>
|
2020-07-30 02:01:40 +00:00
|
|
|
<div class="ui hidden section divider"></div>
|
|
|
|
</div>
|
|
|
|
<div class="ui grid two columns">
|
|
|
|
<div class="row">
|
|
|
|
<div class="column">
|
|
|
|
<div class="ui basic segment center aligned very padded">
|
2020-07-31 00:47:16 +00:00
|
|
|
<div class="ui large header icon">
|
|
|
|
<i class="ui help boui"></i>
|
2020-07-30 02:01:40 +00:00
|
|
|
Getting started
|
|
|
|
<div class="sub header">
|
|
|
|
Check out the getting started guide for a quick introduction
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ui hidden divider"></div>
|
|
|
|
<a class="ui secondary basic button" href="/articles/getting-started">
|
|
|
|
Getting Started
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="column">
|
|
|
|
<div class="ui basic segment center aligned very padded">
|
2020-07-31 00:47:16 +00:00
|
|
|
<div class="ui large icon header">
|
2020-07-30 02:01:40 +00:00
|
|
|
Documentation
|
|
|
|
<div class="sub header">
|
2020-07-30 02:32:59 +00:00
|
|
|
Full documentation and reference articles
|
2020-07-30 02:01:40 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ui hidden divider"></div>
|
2020-07-30 02:57:21 +00:00
|
|
|
<a class="ui secondary basic button" href="/articles">
|
2020-07-30 02:01:40 +00:00
|
|
|
View Documentation
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ partial "footer" . }}
|
2020-07-30 14:38:13 +00:00
|
|
|
<script>
|
|
|
|
$('#download-buttons div.button').tab();
|
|
|
|
$(function () {
|
|
|
|
var OSName = "Unknown OS";
|
|
|
|
if (navigator.appVersion.indexOf("Win") != -1) OSName = "Windows";
|
|
|
|
if (navigator.appVersion.indexOf("Mac") != -1) OSName = "MacOS";
|
|
|
|
if (navigator.appVersion.indexOf("Linux") != -1) OSName = "Linux";
|
|
|
|
switch (OSName) {
|
|
|
|
case "Windows":
|
|
|
|
$('[data-tab=windows-download]').addClass('active');
|
|
|
|
break;
|
|
|
|
case "MacOS":
|
|
|
|
$('[data-tab=macos-download]').addClass('active');
|
|
|
|
break;
|
|
|
|
case "Linux":
|
|
|
|
$('[data-tab=linux-download]').addClass('active');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2020-07-30 02:01:40 +00:00
|
|
|
</body>
|
|
|
|
|
2022-09-25 07:23:44 +00:00
|
|
|
</html>
|