-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation Updated for cQube-ingestion #136
base: master
Are you sure you want to change the base?
Conversation
docs/01-code-setup.md
Outdated
@@ -36,7 +36,7 @@ Create the environment (`.env`) file for connecting to the `timescaledb` docker | |||
|
|||
```bash | |||
touch .env | |||
echo "DATABASE_URL="postgres://timescaledb:postgrespassword@localhost:5432/postgres?sslmode=disable"" > .env | |||
echo "DATABASE_URL="postgres://timescaledb:postgrespassword@localhost:8001/postgres?sslmode=disable"" > .env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
small suggestion, here, this should be
// incorrect wrapping of strings
"DATABASE_URL="postgres://timescaledb:postgrespassword@localhost:8001/postgres?sslmode=disable""
// correct command
"DATABASE_URL"="postgres://timescaledb:postgrespassword@localhost:8001/postgres?sslmode=disable"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix the port here as well
docker-compose.yml
Outdated
@@ -7,7 +7,7 @@ services: | |||
image: timescale/timescaledb:2.0.0-pg12 | |||
restart: always | |||
ports: | |||
- "5432:5432" | |||
- "8001:5432" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Revert back to original ports
docker-compose.yml
Outdated
@@ -17,7 +17,7 @@ services: | |||
graphql-engine: | |||
image: hasura/graphql-engine:latest | |||
ports: | |||
- "8080:8080" | |||
- "8081:8080" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert back to original port mapping.
docker-compose.yml
Outdated
@@ -39,7 +39,7 @@ services: | |||
pgpool-serv: | |||
image: bitnami/pgpool | |||
ports: | |||
- 5433:5432 | |||
- 8002:5432 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert this to original port mapping.
docs/01-code-setup.md
Outdated
@@ -36,7 +36,7 @@ Create the environment (`.env`) file for connecting to the `timescaledb` docker | |||
|
|||
```bash | |||
touch .env | |||
echo "DATABASE_URL="postgres://timescaledb:postgrespassword@localhost:5432/postgres?sslmode=disable"" > .env | |||
echo "DATABASE_URL="postgres://timescaledb:postgrespassword@localhost:8001/postgres?sslmode=disable"" > .env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix the port here as well
impl/c-qube/yarn.lock
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this file from the changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this file? remove this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this, there should not be a yarn.lock at the root level
@@ -36,7 +36,7 @@ Create the environment (`.env`) file for connecting to the `timescaledb` docker | |||
|
|||
```bash | |||
touch .env | |||
echo "DATABASE_URL="postgres://timescaledb:postgrespassword@localhost:5432/postgres?sslmode=disable"" > .env | |||
echo "DATABASE_URL"="postgres://timescaledb:postgrespassword@localhost:8001/postgres?sslmode=disable" > .env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert this back to original state
Hii sir/ma'am, I have updated the Documentation for the project "cQube-ingestion" to setup the project, so that anyone can refer the Documentation provided in the directory cQube-ingestion/docs/01-code-setup.md
Looking forward for a response, ThankYou!