Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ aliases = ["/contribute"]
<p>
Designed from the ground up to be run in production, Dgraph is the native GraphQL database with a graph backend. It is open-source, scalable, distributed, highly available and lightning fast.
</p>
<p><b>Tip</b>: New to Dgraph? Take the <a href="https://dgraph.io/tour">Dgraph Tour</a> to run live queries in your browser. Then, try Dgraph as a <a href="https://cloud.dgraph.io">cloud service</a>, or <a href="https://dgraph.io/docs/deploy/download">download</a> Dgraph to deploy it yourself.</p>
<p><b>Tip</b>: New to Dgraph? Take the <a href="https://dgraph.io/tour">Dgraph Tour</a> to run live queries in your browser. Then, try Dgraph as a <a href="https://cloud.dgraph.io">cloud service</a>, or <a href="{{< relref "installation/_index.md">}}">download</a> Dgraph to deploy it yourself.</p>
<img class="hero-deco" src="/images/hero-deco_403x160.png" />
</div>
<div class="item">
Expand Down Expand Up @@ -45,6 +45,15 @@ aliases = ["/contribute"]
</p>
</a>
</div>
<div class="item">
<div class="icon"><i class="fa fa-download" aria-hidden="true"></i></div>
<a href="{{< relref "installation/_index.md">}}">
<h2>Installation</h2>
<p>
Installing Dgraph on a single-host or a multi-host setup in an on-prem or cloud environment
</p>
</a>
</div>
<div class="item">
<div class="icon"><i class="fa fa-wrench" aria-hidden="true"></i></div>
<a href="{{< relref "deploy/overview.md">}}">
Expand Down
9 changes: 0 additions & 9 deletions content/deploy/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,6 @@ running multiple instances of Dgraph, over multiple servers in a cluster.
</p>
</a>
</div>
<div class="item">
<div class="icon"><i class="lni lni-docker" aria-hidden="true"></i></div>
<a href="{{< relref "kubernetes.md">}}">
<h2>Using Kubernetes</h2>
<p>
Running Dgraph with Kubernetes
</p>
</a>
</div>
<div class="item">
<div class="icon"><i class="lni lni-cogs" aria-hidden="true"></i></div>
<a href="{{< relref "dgraph-administration.md">}}">
Expand Down
119 changes: 0 additions & 119 deletions content/deploy/download.md

This file was deleted.

160 changes: 0 additions & 160 deletions content/deploy/single-host-setup.md

This file was deleted.

2 changes: 1 addition & 1 deletion content/howto/commandline/create-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The completion script is code that uses the builtin bash command complete to def

## Before you begin

* [Install Dgraph]({{< relref "/deploy/download" >}}#buil-and-install).
* [Install Dgraph]({{< relref "/installation/download" >}}#buil-and-install).
* Determine the shell you are running:
```bash
echo $0
Expand Down
66 changes: 66 additions & 0 deletions content/installation/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
+++
title = "Installation"
[menu.main]
identifier = "installation"
weight = 4
+++

<div class="landing">
<div class="hero">
<p>
This section is about installing Dgraph in dev or hobbyist environment as well as production environments with HA and horizontal scalability using multiple Alpha nodes in a cluster.
</p>
<img class="hero-deco" src="/images/hero-deco_403x160.png" />
</div>
<div class="item">
<div class="icon"><i class="lni lni-download" aria-hidden="true"></i></div>
<a href="{{< relref "/installation/download.md">}}">
<h2>Download</h2>
<p>
Download the images and source files to build and install for a production-ready Dgraph cluster
</p>
</a>
</div>
<div class="item">
<div class="icon"><i class="lni lni-docker" aria-hidden="true"></i></div>
<a href="{{< relref "/installation/kubernetes.md">}}">
<h2>Using Kubernetes</h2>
<p>
Running Dgraph with Kubernetes
</p>
</a>
</div>

<style>
ul.contents {
display: none;
}
</style>


<div class="item">
<div class="icon"><i class="lni lni-cog" aria-hidden="true"></i></div>
<a href="{{< relref "../installation/single-host-setup.md">}}">
<h2>Single Host Setup</h2>
<p>
Setting up Dgraph on a single host
</p>
</a>
</div>
<div class="item">
<div class="icon"><i class="lni lni-cogs" aria-hidden="true"></i></div>
<a href="{{< relref "../installation/multi-host-setup.md">}}">
<h2>Multi Host Setup</h2>
<p>
Setting up Dgraph on multiple hosts
</p>
</a>


</div>

<style>
ul.contents {
display: none;
}
</style>
Loading