jbonofre commented on code in PR #4392:
URL: https://github.com/apache/polaris/pull/4392#discussion_r3214271324
##########
site/content/guides/quickstart/index.md:
##########
@@ -28,11 +28,42 @@ menus:
weight: 2
---
-Please see the [quickstart guide](/releases/latest/getting-started/) for more
information.
+# Quickstart
-<!--
-```shell
-cd "$SITE_TEST_GUIDE_DIR"
-docker compose up
+Welcome to Apache Polaris! This guide helps you quickly get Polaris running
locally for evaluation and development purposes.
+**This setup is not intended for production use.**
+
+## Prerequisites
+
+- Docker and Docker Compose v2 installed and running.
+
+## Running the Quickstart
+
+Run the following command:
+
+```bash
+curl -s
https://raw.githubusercontent.com/apache/polaris/refs/heads/main/site/content/guides/quickstart/docker-compose.yml
| docker compose -f - up
```
--->
+
+This command will start Polaris + RustFS and automatically create:
+- Catalog: `quickstart_catalog`
+- Principal: `quickstart_user` (with full access)
+
+Check the logs for credentials and example commands.
+
+### Useful URLs
+
+- Polaris REST API: http://localhost:8181
+- RustFS Console: http://localhost:9001
+
+To stop the services:
+```bash
+docker compose down
Review Comment:
This command won't work I believe if not execute in the right directory.
We should inform the user that it has to run `docker compose down` in the
directory where `docker compose up` has been executed.
Another approach would be to use `-p polaris-quitckstart` on both `docker
compose up` and `docker compose down` commands.
##########
site/content/guides/quickstart/index.md:
##########
@@ -1,19 +1,19 @@
---
#
# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
+# or more contributor license agreements. See the NOTICE file
Review Comment:
nit: please avoid unecessary changes.
##########
site/content/guides/quickstart/index.md:
##########
@@ -28,11 +28,42 @@ menus:
weight: 2
---
-Please see the [quickstart guide](/releases/latest/getting-started/) for more
information.
+# Quickstart
-<!--
-```shell
-cd "$SITE_TEST_GUIDE_DIR"
-docker compose up
+Welcome to Apache Polaris! This guide helps you quickly get Polaris running
locally for evaluation and development purposes.
+**This setup is not intended for production use.**
+
+## Prerequisites
+
+- Docker and Docker Compose v2 installed and running.
+
+## Running the Quickstart
+
+Run the following command:
+
+```bash
+curl -s
https://raw.githubusercontent.com/apache/polaris/refs/heads/main/site/content/guides/quickstart/docker-compose.yml
| docker compose -f - up
Review Comment:
This will run on foreground. Do we want this or use `docker compose -d` to
start in background (daemon)?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]