mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
docs: update EE quickstarts
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7388 GitOrigin-RevId: d90898f4e1e2ddb1ed33d6776a1731a2889acf09
This commit is contained in:
parent
c7bb13a776
commit
f27146dec4
@ -13,7 +13,7 @@ import LatestRelease from '@site/src/components/LatestRelease';
|
||||
|
||||
# Quickstart with AWS ECS
|
||||
|
||||
<div className="badge badge--primary heading-badge">Available on: Enterprise Edition</div>
|
||||
<div className='badge badge--primary heading-badge'>Available on: Enterprise Edition</div>
|
||||
|
||||
## Introduction
|
||||
|
||||
@ -28,6 +28,8 @@ Fargate task, and perform other common tasks in Amazon ECS with the AWS CLI.
|
||||
|
||||
This tutorial assumes that the following prerequisites have been met:
|
||||
|
||||
- To deploy Hasura EE, you will need a license key. [Please contact Hasura Sales](sales@hasura.io) if you do not already
|
||||
have one.
|
||||
- The latest version of the AWS CLI is installed and configured. For more information about installing or upgrading your
|
||||
AWS CLI, see
|
||||
[Installing the AWS Command Line Interface](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html).
|
||||
@ -74,7 +76,7 @@ Edit `hasura-fargate-task.json` and set the right values:
|
||||
"environment": [
|
||||
{
|
||||
"name": "HASURA_GRAPHQL_EE_LICENSE_KEY",
|
||||
"value": ""
|
||||
"value": "<license key>"
|
||||
},
|
||||
{
|
||||
"name": "HASURA_GRAPHQL_METADATA_DATABASE_URL",
|
||||
|
@ -14,7 +14,7 @@ import LatestRelease from '@site/src/components/LatestRelease';
|
||||
|
||||
# Quickstart with Docker
|
||||
|
||||
<div className="badge badge--primary heading-badge">Available on: Enterprise Edition</div>
|
||||
<div className='badge badge--primary heading-badge'>Available on: Enterprise Edition</div>
|
||||
|
||||
## Introduction
|
||||
|
||||
@ -30,6 +30,8 @@ Enterprise Edition on your **local environment**.
|
||||
|
||||
This tutorial assumes that the following prerequisites have been met:
|
||||
|
||||
- To deploy Hasura EE, you will need a license key. [Please contact Hasura Sales](mailto:sales@hasura.io) if you do not
|
||||
already have one.
|
||||
- You have [Docker](https://docs.docker.com/install/) and [Docker Compose](https://docs.docker.com/compose/install/)
|
||||
working on your machine.
|
||||
|
||||
@ -58,7 +60,7 @@ admin secret key.
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.12.0
|
||||
environment:
|
||||
HASURA_GRAPHQL_EE_LICENSE_KEY: ""
|
||||
HASURA_GRAPHQL_EE_LICENSE_KEY: "<license key>"
|
||||
HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
|
||||
...
|
||||
```
|
||||
|
@ -13,7 +13,7 @@ import LatestRelease from '@site/src/components/LatestRelease';
|
||||
|
||||
# Quickstart with Google Cloud Run
|
||||
|
||||
<div className="badge badge--primary heading-badge">Available on: Enterprise Edition</div>
|
||||
<div className='badge badge--primary heading-badge'>Available on: Enterprise Edition</div>
|
||||
|
||||
## Introduction
|
||||
|
||||
@ -27,6 +27,8 @@ This tutorial will help you run Hasura Enterprise Edition as a Google Cloud Run
|
||||
|
||||
This tutorial assumes that the following prerequisites have been met:
|
||||
|
||||
- To deploy Hasura EE, you will need a license key. [Please contact Hasura Sales](sales@hasura.io) if you do not already
|
||||
have one.
|
||||
- The latest version of the `gcloud` CLI is installed and configured. For more information about installing or upgrading
|
||||
your gcloud CLI, see [Installing the gcloud CLI](https://cloud.google.com/sdk/docs/install).
|
||||
- Your `gcloud` user has the
|
||||
@ -52,7 +54,7 @@ wget https://raw.githubusercontent.com/hasura/graphql-engine/stable/install-mani
|
||||
Edit `env.yaml` and set the right values:
|
||||
|
||||
```yaml
|
||||
HASURA_GRAPHQL_EE_LICENSE_KEY: ''
|
||||
HASURA_GRAPHQL_EE_LICENSE_KEY: '<license key>'
|
||||
HASURA_GRAPHQL_METADATA_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/postgres
|
||||
HASURA_GRAPHQL_REDIS_URL: 'redis://redis:6379'
|
||||
HASURA_GRAPHQL_RATE_LIMIT_REDIS_URL: 'redis://redis:6379'
|
||||
|
@ -13,7 +13,7 @@ import LatestRelease from '@site/src/components/LatestRelease';
|
||||
|
||||
# Quickstart with Kubernetes
|
||||
|
||||
<div className="badge badge--primary heading-badge">Available on: Enterprise Edition</div>
|
||||
<div className='badge badge--primary heading-badge'>Available on: Enterprise Edition</div>
|
||||
|
||||
## Introduction
|
||||
|
||||
@ -27,6 +27,8 @@ This tutorial helps you set up Hasura Enterprise Edition on Kubernetes and conne
|
||||
|
||||
This tutorial assumes that the following prerequisites have been met:
|
||||
|
||||
- To deploy Hasura EE, you will need a license key. [Please contact Hasura Sales](sales@hasura.io) if you do not already
|
||||
have one.
|
||||
- A functioning Kubernetes cluster.
|
||||
- This tutorial uses a container image hosted on the public Docker hub, so your Kubernetes cluster must have internet
|
||||
access.
|
||||
@ -51,7 +53,7 @@ Edit `deployment.yaml` and set the right values:
|
||||
---
|
||||
env:
|
||||
- name: HASURA_GRAPHQL_EE_LICENSE_KEY
|
||||
value: ''
|
||||
value: '<license key>'
|
||||
- name: HASURA_GRAPHQL_METADATA_DATABASE_URL
|
||||
value: postgres://<username>:<password>@hostname:<port>/<dbname>
|
||||
- name: HASURA_GRAPHQL_REDIS_URL
|
||||
|
Loading…
Reference in New Issue
Block a user