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

# Environments

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[localhost link]: http://localhost:3000/docs/lucidworks-search/08-administration/environments/overview

[mintlify link]: https://doc.lucidworks.com/docs/lucidworks-search/08-administration/environments/overview

[old doc.lw link]: https://doc.lucidworks.com/managed-fusion/5.9/zm43ol

Lucidworks Search clients have access to multiple environments. The number and type of environments depends on your setup and agreement. Usually, you have one production environment and multiple non-production environments, which you can use to try out new features, test configurations, and stage changes before pushing them into production.

<LwTemplate />

## Types of environments

There are five types of environments that Lucidworks supports. A typical Lucidworks Search client has access to two (development and production) or three (development, stage, and production) environments.

### Production

This is the environment where production workloads are served. Any changes made are publicly available to end users.

### Performance

This environment is used for performing load tests against production-equivalent configurations.

### Stage

This environment is where you can test development changes in a more scalable environment. This is also the environment where work is staged for promotion to the production environment.

### Quality Assurance

Smaller than stage, this environment is intended for running automated tests.

### Development

Also known as the sandbox or POC (proof of concept) environment, this is where you can perform application and system development tasks, such as designing, programming, and debugging.

## Roles and environments

The [roles](/docs/lucidworks-search/08-administration/access-control/roles) Lucidworks Search clients have depend on the type of environment.

| Environment                                            | Roles                                                                                                                                                   |
| ------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Development, Stage, Performance, Quality Assurance** | [developer](/docs/lucidworks-search/08-administration/access-control/roles), [readonly](/docs/lucidworks-search/08-administration/access-control/roles) |
| **Production**                                         | [rules](/docs/lucidworks-search/08-administration/access-control/roles), [readonly](/docs/lucidworks-search/08-administration/access-control/roles)     |
