Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ RUN echo '. $HOME/.venv/bin/activate' >> ~apl/.bashrc
COPY --chown=apl:apl . /app/ibet-Wallet-API
RUN cd /app/ibet-Wallet-API \
&& uv venv $UV_PROJECT_ENVIRONMENT \
&& uv sync --frozen --no-install-project --no-dev --extra ibet-explorer \
&& uv sync --frozen --no-install-project --no-dev \
&& rm -f /app/ibet-Wallet-API/pyproject.toml \
&& rm -f /app/ibet-Wallet-API/uv.lock \
&& rm -rf /app/ibet-Wallet-API/tests/
Expand Down
5 changes: 0 additions & 5 deletions ENV_LIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,6 @@ See [Gunicorn's official documentation](https://docs.gunicorn.org/en/stable/run.
| IBET_COUPON_EXCHANGE_CONTRACT_ADDRESS | False | IbetExchange contract address for Coupon tokens | 0x0000000000000000000000000000000000000000 | -- |
| EXCHANGE_NOTIFICATION_ENABLED | True* | Use of exchange-related notification (*Set only if you use IbetExchange) | 0 (not using) / 1 (using) | -- |

### Blockchain Explorer
| Variable Name | Required | Details | Example | Default |
|---------------------|----------|-----------------------------------------------------|---------------------------|---------|
| BC_EXPLORER_ENABLED | False | Parameter for starting the Blockchain Explorer | 0 (not using) / 1 (using) | 0 |

### Email
Common

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ $ uv venv

Install python packages with:
```bash
$ uv sync --frozen --no-install-project --no-dev --extra ibet-explorer
$ uv sync --frozen --no-install-project --no-dev
```

### Setting environment variables
Expand Down
2 changes: 1 addition & 1 deletion README_JA.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ $ uv venv

以下のコマンドで Python パッケージをインストールします。
```bash
$ uv sync --frozen --no-install-project --no-dev --extra ibet-explorer
$ uv sync --frozen --no-install-project --no-dev
```

### 環境変数の設定
Expand Down
Loading