# 本番環境への展開

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を使用する

SingularityをPostgreSQLバックエンドとともに素早く展開したい場合は、提供されているDocker Composeテンプレートを使用することを検討してください。

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

上記のコマンドを実行すると、PostgreSQLデータベースがセットアップされ、必要なSingularityサービス（APIおよびデータセットワーカー）が起動されます。


---

# Agent Instructions: 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:

```
GET https://data-programs.gitbook.io/singularity/jp/installation/deploy-to-production.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
