Skip to content

Commit 3b912c8

Browse files
Added testing urls and branch
1 parent d29ff58 commit 3b912c8

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ALTER USER postgres_ai_mon set search_path = "$user", public, pg_catalog;
4343

4444
```bash
4545
# Download the CLI
46-
curl -o postgres_ai https://gitlab.com/postgres-ai/postgres_ai/-/raw/main/postgres_ai \
46+
curl -o postgres_ai https://gitlab.com/postgres-ai/postgres_ai/-/raw/testing/postgres_ai \
4747
&& chmod +x postgres_ai
4848
```
4949

postgres_ai

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ clone_repository() {
574574
fi
575575

576576
log_info "Cloning Postgres AI project from GitLab..."
577-
if git clone "$repo_url" "$project_dir"; then
577+
if git clone "$repo_url" "$project_dir" -b testing; then
578578
log_success "Repository cloned successfully"
579579
cd "$project_dir" || exit 1
580580
# Update SCRIPT_DIR to the cloned directory
@@ -1477,17 +1477,17 @@ open_shell() {
14771477
show_access_info() {
14781478
echo
14791479
log_info "Technical service URLs (for advanced users):"
1480-
echo " PGWatch Postgres: http://localhost:8080"
1481-
echo " PGWatch Prometheus: http://localhost:8089"
1482-
echo " Prometheus: http://localhost:9090"
1483-
echo " Flask API: http://localhost:5000"
1480+
echo " PGWatch Postgres: http://localhost:58080"
1481+
echo " PGWatch Prometheus: http://localhost:58089"
1482+
echo " Prometheus: http://localhost:59090"
1483+
echo " Flask API: http://localhost:55000"
14841484

14851485
# Show target database only in demo mode
14861486
if is_demo_mode; then
1487-
echo " Target Database: postgresql://postgres:postgres@localhost:5432/target_database"
1487+
echo " Target Database: postgresql://postgres:postgres@localhost:55432/target_database"
14881488
fi
14891489

1490-
echo " Sink Database: postgresql://postgres:postgres@localhost:5433/postgres"
1490+
echo " Sink Database: postgresql://postgres:postgres@localhost:55433/postgres"
14911491
echo
14921492

14931493
# Show reports information

reporter/postgres_reports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1583,7 +1583,7 @@ def main():
15831583
help='Specific check ID to generate (default: ALL)')
15841584
parser.add_argument('--output', default='-',
15851585
help='Output file (default: stdout)')
1586-
parser.add_argument('--api-url', default='https://postgres.ai/api/general')
1586+
parser.add_argument('--api-url', default='https://v2.postgres.ai/api/general')
15871587
parser.add_argument('--token', default='')
15881588
parser.add_argument('--project', default='project-name')
15891589
parser.add_argument('--epoch', default='1')

0 commit comments

Comments
 (0)