mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
chore: update dev env to support workflows service (#7503)
This commit is contained in:
parent
adbcd46758
commit
3e52e4d9bf
4 changed files with 20 additions and 2 deletions
|
|
@ -262,6 +262,6 @@ password
|
|||
1. Click on Start Hive in the bottom bar of VSCode
|
||||
2. Open the UI (`http://localhost:3000` by default) and register any email and password
|
||||
3. Sending e-mails is mocked out during local development, so in order to verify the account find
|
||||
the verification link by visiting the email server's `/_history` endpoint -
|
||||
`http://localhost:6260/_history` by default.
|
||||
the verification link by visiting the workflow server's `/_history` endpoint -
|
||||
`http://localhost:3014/_history` by default.
|
||||
- Searching for `token` should help you find the link.
|
||||
|
|
|
|||
7
packages/services/workflows/.env.template
Normal file
7
packages/services/workflows/.env.template
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
POSTGRES_HOST=localhost
|
||||
POSTGRES_PORT=5432
|
||||
POSTGRES_DB=registry
|
||||
POSTGRES_USER=postgres
|
||||
POSTGRES_PASSWORD=postgres
|
||||
EMAIL_FROM=mock@graphql-hive.com
|
||||
EMAIL_PROVIDER=mock
|
||||
10
packages/services/workflows/turbo.json
Normal file
10
packages/services/workflows/turbo.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"$schema": "https://turborepo.org/schema.json",
|
||||
"extends": ["//"],
|
||||
"tasks": {
|
||||
"dev": {
|
||||
"persistent": true,
|
||||
"cache": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -28,6 +28,7 @@
|
|||
"@hive/policy#dev",
|
||||
"@hive/commerce#dev",
|
||||
"@hive/cdn-script#dev",
|
||||
"@hive/workflows#dev",
|
||||
"@hive/usage#dev",
|
||||
"@hive/usage-ingestor#dev",
|
||||
"@graphql-hive/external-composition#example",
|
||||
|
|
|
|||
Loading…
Reference in a new issue