> For the complete documentation index, see [llms.txt](https://data-programs.gitbook.io/singularity/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://data-programs.gitbook.io/singularity/zh/installation/deploy-to-production.md).

# 部署到生产环境

Singularity默认使用`sqlite3`作为它的数据库后端，因为它易于设置。但是，当切换到生产环境时，特别是如果您计划使用多个工作节点或者打算在负载平衡器后面提供检索服务，建议切换到更强大的数据库后端。您可以通过设置`$DATABASE_CONNECTION_STRING`环境变量来配置后端。

## 支持的数据库后端

* **PostgreSQL**：\
  连接字符串示例：\
  `postgres://user:pass@example.com:5432/dbname`
* **MySQL**：\
  连接字符串示例：\
  `mysql://user:pass@tcp(localhost:3306)/dbname?parseTime=true`

## 使用 Docker Compose 进行部署

如果您想快速部署带有PostgreSQL后端的Singularity，请考虑使用提供的Docker Compose模板：

```bash
wget https://raw.githubusercontent.com/data-preservation-programs/singularity/main/docker-compose.yml
docker-compose up
```

执行上述命令将设置一个PostgreSQL数据库，并启动必要的Singularity服务，包括API和数据集工作节点。


---

# 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://data-programs.gitbook.io/singularity/zh/installation/deploy-to-production.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.
