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

# Quickstart

> Get FigoRisk running in under 10 minutes

## Prerequisites

Before you begin, ensure you have:

<AccordionGroup>
  <Accordion icon="docker" title="Docker Desktop">
    * **Mac/Windows**: Docker Desktop 4.0+ - **Linux**: Docker Engine 20.10+ and
      Docker Compose - Minimum 4GB RAM allocated to Docker
  </Accordion>

  <Accordion icon="hard-drive" title="System Requirements">
    * 4GB RAM (8GB recommended) - 20GB free disk space - Modern web browser
      (Chrome, Firefox, Safari, Edge)
  </Accordion>
</AccordionGroup>

## Installation

<Steps>
  <Step title="Download Package">
    Download the latest FigoRisk deployment package:

    ```bash theme={null}
        wget https://releases.figorisk.com/figorisk-deployment-v1.0.0.zip
        unzip figorisk-deployment-v1.0.0.zip
        cd figorisk-deployment-package
    ```
  </Step>

  {" "}

  <Step title="Configure Environment">
    Copy the environment template and configure: `bash cp .env.template .env
          nano .env ` Set these required values: `bash
          MONGO_URI=mongodb://admin:YOUR_PASSWORD@mongo:27017/figorisk?authSource=admin
          MONGO_ROOT_PASSWORD=YOUR_PASSWORD JWT_SECRET=$(openssl rand -hex 32)
          SUPER_ADMIN_PASSWORD=admin123 `
  </Step>

  {" "}

  <Step title="Deploy">
    Run the deployment script: `bash chmod +x deploy-figorisk.sh
          ./deploy-figorisk.sh ` Wait for all services to start (about 30-60 seconds).
  </Step>

  <Step title="Access FigoRisk">
    Open your browser to: **[http://localhost](http://localhost)**

    Login with:

    * Username: `admin`
    * Password: Value from `SUPER_ADMIN_PASSWORD`
  </Step>
</Steps>

## Verify Installation

Check that all services are running:

```bash theme={null}
docker-compose ps
```

You should see 4 services running:

* `figorisk-backend` - Backend API
* `figorisk-frontend` - Web interface
* `figorisk-mongo` - Database
* `figorisk-nginx` - Reverse proxy

## Next Steps

<CardGroup cols={2}>
  <Card title="Configure Organization" icon="building" href="/guides/organization-setup">
    Set up your organization profile
  </Card>

  <Card title="Add Users" icon="users" href="/guides/user-management">
    Invite team members
  </Card>

  <Card title="Import Assets" icon="database" href="/guides/asset-import">
    Import your IT assets
  </Card>

  <Card title="API Integration" icon="plug" href="/api-reference/introduction">
    Integrate with your systems
  </Card>
</CardGroup>

## Troubleshooting

<AccordionGroup>
  <Accordion icon="circle-xmark" title="Services won't start">
    1. Check Docker is running: `docker ps` 2. View logs: `docker-compose logs`
    2. Verify ports 80 and 27017 are available
  </Accordion>

  <Accordion icon="key" title="Can't login">
    1. Verify credentials in `.env` file 2. Check backend logs: `docker-compose
           logs backend` 3. Restart services: `docker-compose restart`
  </Accordion>
</AccordionGroup>

<Card title="Need more help?" icon="life-ring" href="/troubleshooting/common-issues">
  Check our troubleshooting guide
</Card>
