Просмотр исходного кода

HUE-8888 [docs] Refactor the quick start section

Romain 6 лет назад
Родитель
Сommit
e1d5ac68d3

+ 2 - 2
docs/docs-site/content/administrator/configuration/_index.md

@@ -8,13 +8,13 @@ weight: 3
 ## Hue
 
 The source of truth sits in the main [hue.ini](https://github.com/cloudera/hue/blob/master/desktop/conf.dist/hue.ini).
-It consists in several [ini sections](https://en.wikipedia.org/wiki/INI_file#Sections). Lines needs to be uncommented to be active.
+It consists in several ini sections. Lines needs to be uncommented to be active.
 
 The most important things to configure are:
 
 * pointing to a relational database (where Hue saves users and queries)
 * pointing to external services to query or browse (which databases we want users to query with SQL, or filesystems to browse...)
 
-## Services to interact with
+## Services
 
 Sometimes some Hadoop components need to be configured to properly work with Hue. Hue is using Hadoop `impersonation` to be able to communicate properly with certain services. This is described in the following [Service Configuration](/administrator/configuration/).

+ 13 - 11
docs/docs-site/content/quickstart/_index.md

@@ -5,26 +5,28 @@ draft: false
 weight: 1
 ---
 
-After getting Hue then [configure it](/administrator/configuration/).
+## Get
 
-## Demo
-
-One click on [http://demo.gethue.com](http://demo.gethue.com).
-
-## Kubernetes
+Via [Kubernetes](/administrator/installation/cloud/#kubernetes):
 
     helm repo add gethue https://helm.gethue.com
     helm repo update
     helm install gethue/hue
 
-## Docker
+Or [Docker](/administrator/installation/cloud/#docker):
 
     docker run -it -p 8888:8888 gethue/hue:latest
 
-## Query
+## Configure
+
+Then [configure the server](/administrator/configuration/) and point connectors to your [Databases, Warehouses, Storages](/administrator/configuration/connectors/).
+
+## Use or Develop
 
-List of connectors to [Databases, Warehouses, Storages](/administrator/configuration/connectors/) to connect to.
+Some tutorials on how to:
 
-## Develop
+* [Query a Customer 360](http://gethue.com/self-service-bi-doing-a-customer-360-by-querying-and-joining-salesforce-marketing-and-log-datasets/)
+* [Troubleshoot SQL](http://gethue.com/self-service-impala-sql-query-troubleshooting/)
+* [Ingest data](http://gethue.com/querying-exploring-the-instacart-dataset-part-1-ingesting-the-data/)
 
-How to improve the [SQL autocomplete](/developer/parsers/) for your own database.
+How to improve and contribute the [SQL autocomplete](/developer/parsers/) for your own database.