# private repository を参照したい場合

## 概要

diarkis-cli でビルドする際に、プロジェクトが private repository を参照している場合、ビルドサーバーで認証エラーが発生します。この問題を回避する方法について説明します。

## 問題

そのままビルドを試みると、diarkis-cli のビルドサーバーはあなたの private repository にあるコードに対して認証エラーが発生してしまいます。

## 解決方法

以下の手順で問題を回避できます：

1. **private repository のコードをローカルにコピー**

   同一リポジトリ内に private repository の directory をコピーします。
2. **go.mod の変更**

   下記のようにローカルのリポジトリを参照するように変更します：

   ```go
   require (
   	github.com/Org/privateModule v0.0.0-00010101000000-000000000000
   )

   replace github.com/Org/privateModule => ./private-module // change Org and privateModule
   ```

   （適宜 Org Name と repo name は実際の名前に置換してください）
3. **ビルドの実行**

   通常通りビルドを実行すると、ビルドが通るようになります。

## TIPS

`.buildignore` に local にある private repository のディレクトリの不要なファイルを指定すると、アップロードする量を抑えることができます。


---

# 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://help.diarkis.io/diarkis-tool/diarkis-cli/how-to-reference-private-repository.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.
