> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gorbit.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# البدء السريع

> الطريقة الموصى بها لنشر Gorbit في دقائق

## سكريبت التثبيت

يتطلب سكريبت التثبيت `Bash` للعمل، لذا يعمل مباشرة على Linux و MacOS. لتشغيل Gorbit على Windows،
قم بتثبيت Bash أو راجع نشر [Docker](/deployment/local/docker).

للنشر بأمر واحد:

```bash theme={null}
curl -fsSL https://raw.githubusercontent.com/gorbit-dot-app/gorbit/main/deployment/docker_compose/install.sh > install.sh && chmod +x install.sh && ./install.sh
```

<Accordion title="مع Gorbit Craft (غير مستقر)">
  <Warning>
    Gorbit Craft حاليًا غير مستقر وقيد التطوير النشط. لا يُنصح باستخدامه في بيئات الإنتاج.
  </Warning>

  لنشر Gorbit مع تفعيل **[Gorbit Craft](/overview/core_features/craft)** (وكيل في بيئة معزولة):

  ```bash theme={null}
  curl -fsSL https://raw.githubusercontent.com/gorbit-dot-app/gorbit/main/deployment/docker_compose/install.sh > install.sh && chmod +x install.sh && ./install.sh --include-craft
  ```

  <Tip>
    راجع [وثائق Craft](/overview/core_features/craft) للحصول على التفاصيل الكاملة حول الإمكانيات والتكوين،
    وتفعيل Craft على النشرات الحالية.
  </Tip>
</Accordion>

بدلاً من ذلك، قم بتنزيل وتشغيل سكريبت التثبيت أدناه.

<Card title="تحميل سكريبت التثبيت" icon="download" href="https://raw.githubusercontent.com/gorbit-dot-app/gorbit/main/deployment/docker_compose/install.sh">
  انقر هنا لتحميل سكريبت install.sh من GitHub.
</Card>

بعد تحميل السكريبت، قم بتشغيله باستخدام `bash ./install.sh`

سيقوم السكريبت بما يلي:

* التحقق من موارد ومتطلبات النظام
* سحب ملفات النشر والتكوين الضرورية
* مطالبة المستخدم بإصدار Gorbit للنشر ومعلومات أساسية أخرى
* سحب حاويات Gorbit وتشغيلها في Docker

<Info>
  سيقوم السكريبت بإنشاء مجلد يسمى **gorbit\_data** وسيكون هناك أيضًا ملف README بداخله يحتوي على معلومات إضافية.
</Info>

## Resourcing Overview

| Resource | Minimum                     | Preferred                             |
| -------- | --------------------------- | ------------------------------------- |
| CPU      | 4 vCPU                      | 8+ vCPU                               |
| RAM      | 10 GB                       | 16+ GB                                |
| Disk     | 32 GB + \~2.5x indexed data | 500 GB for organizations \<5000 users |

<Warning>
  Vespa (the vector database used by Gorbit) does not allow writes once disk usage hits 75%.
</Warning>

لمزيد من التفاصيل، يغطي [دليل الموارد](/deployment/getting_started/resourcing) اختيار مثيلات السحابة،
وتخصيص الموارد حسب الحاوية، وكيفية توسيع نشر Gorbit الخاص بك.

## Next Steps

<CardGroup cols={2}>
  <Card title="Configure Authentication" icon="shield-check" href="/deployment/authentication/basic">
    Set up authentication for your Gorbit deployment with OAuth, OIDC, or SAML.
  </Card>

  <Card title="More Gorbit Configuration Options" icon="gear" href="/deployment/configuration/configuration">
    Learn about all available configuration options for your Gorbit deployment.
  </Card>
</CardGroup>
