Skip to content

Commit

Permalink
fix(quickstart): demo credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
ifokeev committed Feb 20, 2024
1 parent 2a171d4 commit 170ca3d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 18 deletions.
25 changes: 16 additions & 9 deletions docs/quickstart/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The repository [mlcraft-io/mlcraft/install-manifests](https://github.com/mlcraft
Execute the following command to start Synmetrix along with a Postgres database for data storage.

```bash
$ docker-compose up -d
$ docker-compose pull stack && docker-compose up -d
```

Verify if the containers are operational:
Expand Down Expand Up @@ -85,9 +85,16 @@ The installation of all dependencies will take approximately 5-7 minutes. Wait u

2. **Environment Variables**: Set up all necessary environment variables. Synmetrix will function with the default values, but certain features might not perform as anticipated.

3. **Default Seed Data**: The project comes with default seed data. Use the following credentials to log in:
- Email: `demo@synmetrix.org`
- Password: `demodemo`
3. **Preloaded Seed Data**: The project is equipped with preloaded seed data. Use the credentials below to sign in:
- Email: `demo@synmetrix.org`
- Password: `demodemo`

This account is pre-configured with two demo datasources and their respective SQL API access. For SQL operations, you can use the following credentials with any SQL client tool such as DBeaver or TablePlus:

| Host | Port | Database | User | Password |
|-----------|-------|----------|----------------------|-----------------------|
| localhost | 15432 | db | demo_pg_user | demo_pg_pass |
| localhost | 15432 | db | demo_clickhouse_user | demo_clickhouse_pass |

:::

Expand All @@ -99,10 +106,10 @@ Demo: [app.synmetrix.org](https://app.synmetrix.org)
* Login: `demo@synmetrix.org`
* Password: `demodemo`

### Demo credentials
### Demo datasource credentials

| Database type | Host | Port | Database | User | Password | SSL |
|---------------|------------------------|------|----------|------|-------------|-------|
| ClickHouse | gh-api.clickhouse.tech | 443 | default | play | no password | true |
| PostgreSQL | demo-db.cube.dev | 5432 | ecom | cube | 12345 | false |
| Database type | Host | Port | Database | User | Password | SSL |
| ------------- | --------------------------- | ---- | -------- | ---- | ----------- | ----- |
| ClickHouse | gh-api.clickhouse.tech | 443 | default | play | no password | true |
| PostgreSQL | demo-db-examples.cube.dev | 5432 | ecom | cube | 12345 | false |

25 changes: 16 additions & 9 deletions versioned_docs/version-1.0.0/quickstart/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The repository [mlcraft-io/mlcraft/install-manifests](https://github.com/mlcraft
Execute the following command to start Synmetrix along with a Postgres database for data storage.

```bash
$ docker-compose up -d
$ docker-compose pull stack && docker-compose up -d
```

Verify if the containers are operational:
Expand Down Expand Up @@ -85,9 +85,16 @@ The installation of all dependencies will take approximately 5-7 minutes. Wait u

2. **Environment Variables**: Set up all necessary environment variables. Synmetrix will function with the default values, but certain features might not perform as anticipated.

3. **Default Seed Data**: The project comes with default seed data. Use the following credentials to log in:
- Email: `demo@synmetrix.org`
- Password: `demodemo`
3. **Preloaded Seed Data**: The project is equipped with preloaded seed data. Use the credentials below to sign in:
- Email: `demo@synmetrix.org`
- Password: `demodemo`

This account is pre-configured with two demo datasources and their respective SQL API access. For SQL operations, you can use the following credentials with any SQL client tool such as DBeaver or TablePlus:

| Host | Port | Database | User | Password |
|-----------|-------|----------|----------------------|-----------------------|
| localhost | 15432 | db | demo_pg_user | demo_pg_pass |
| localhost | 15432 | db | demo_clickhouse_user | demo_clickhouse_pass |

:::

Expand All @@ -99,10 +106,10 @@ Demo: [app.synmetrix.org](https://app.synmetrix.org)
* Login: `demo@synmetrix.org`
* Password: `demodemo`

### Demo credentials
### Demo datasource credentials

| Database type | Host | Port | Database | User | Password | SSL |
|---------------|------------------------|------|----------|------|-------------|-------|
| ClickHouse | gh-api.clickhouse.tech | 443 | default | play | no password | true |
| PostgreSQL | demo-db.cube.dev | 5432 | ecom | cube | 12345 | false |
| Database type | Host | Port | Database | User | Password | SSL |
| ------------- | --------------------------- | ---- | -------- | ---- | ----------- | ----- |
| ClickHouse | gh-api.clickhouse.tech | 443 | default | play | no password | true |
| PostgreSQL | demo-db-examples.cube.dev | 5432 | ecom | cube | 12345 | false |

0 comments on commit 170ca3d

Please sign in to comment.