> For the complete documentation index, see [llms.txt](https://pool-party-xyz.gitbook.io/pool-party-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pool-party-xyz.gitbook.io/pool-party-docs/pool-party-v2-docs/get-started/quickstart.md).

# Quickstart

Two short paths, depending on whether you want to invest in a pool or run one.

## Invest in a pool

1. **Connect your wallet.** Social login is supported.
2. **Choose a supported network.** *(v2 network support is coming soon.)*
3. **Find a pool** and review its mandate, holdings, track record, manager, and fees.
4. **Deposit** and receive your pool shares.
5. **Track your position** any time, on-chain and in the app.

## Run a pool

1. **Connect** and, optionally, **verify** your identity by linking social accounts.
2. **Create a pool:** set its name, mandate, assets, and performance fee (configurable from 10% to 90%).
3. **Allocate** across assets through adapters, and rebalance as your strategy evolves.
4. **Share your pool** so your community can review it and join.

{% hint style="info" %}
Access is permissionless: anyone can create and run a pool. Verification is optional, and Pool Party only identifies a manager publicly when the manager chooses to be identified. Pool Party does not endorse any manager or strategy.
{% endhint %}

Participating in a pool carries risk, including the potential loss of your entire deposit. Past performance does not indicate future results. Nothing here is financial, legal, or tax advice.

***

***

***

This quickstart gets you to your first deploy as fast as possible. We'll skip most of the configuration — you can refine things later once you have something running.

{% hint style="success" %}
**Estimated time: 5 minutes.** All you need is an account and a project to deploy.
{% endhint %}

## Steps

{% stepper %}
{% step %}

#### Create your workspace

Sign in and create a new workspace. The workspace name appears in URLs and email notifications, so pick something recognisable.

```
yourcompany
```

{% endstep %}

{% step %}

#### Connect a source

Link a repository from your version control provider, or upload a project directly.

{% tabs %}
{% tab title="Repository" %}
Click **Connect repository**, authenticate with your provider, and select the repository to import. The platform will detect your framework automatically.
{% endtab %}

{% tab title="Upload" %}
Drag and drop a project folder, or use the CLI:

```bash
platform deploy ./my-project
```

{% endtab %}

{% tab title="Template" %}
Browse the template gallery and click **Use template**. A new project will be created from the template in your workspace.
{% endtab %}
{% endtabs %}
{% endstep %}

{% step %}

#### Configure your build

Most projects work with the auto-detected settings. If yours doesn't, override them in **Project settings → Build**.

```yaml
build:
  command: npm run build
  output: dist/
  node: 20
```

{% endstep %}

{% step %}

#### Deploy

Hit **Deploy**. Your project will build and go live at a generated subdomain. You can promote it to production or add a custom domain at any time.

{% hint style="info" %}
First builds typically take 1–3 minutes. Subsequent builds are faster because dependencies are cached.
{% endhint %}
{% endstep %}
{% endstepper %}

## What's next?

You've shipped something — now make it yours.

{% content-ref url="/pages/56a52747d54863f8df67ff3ce908938888c69b66" %}
[For Users](/pool-party-docs/pool-party-v2-docs/for-users/for-users.md)
{% endcontent-ref %}

{% content-ref url="/pages/fb922e107b31a3e9e9fcf81410029e993b0a9afc" %}
[Deposits & Self-custody](/pool-party-docs/pool-party-v2-docs/core-concepts/deposits-and-self-custody.md)
{% endcontent-ref %}

{% content-ref url="/pages/d9d593aeabc52a165190bf8c93720491a4eb9682" %}
[For Managers](/pool-party-docs/pool-party-v2-docs/for-managers/for-managers.md)
{% endcontent-ref %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://pool-party-xyz.gitbook.io/pool-party-docs/pool-party-v2-docs/get-started/quickstart.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
