# Local development overrides (loaded by init_env() via python-dotenv).
#
# Endpoints come from the parameters/core files, pointed at the local docker
# stack via the hosts file (see docker/README.md). CyberArk supplies real-env
# credentials and the cert path is set by init_env().
#
# Local docker SQL Server uses SQL auth; the credentials live here (this file is
# gitignored) instead of being hardcoded in source. See .env.example.
LOCAL_DB_USER=sa
LOCAL_DB_PASSWORD=YourStrong!Passw0rd
PY_ENVIRON=dev

# Pyro services bind/advertise on loopback (gethostname() resolves to a flaky
# link-local IPv6 on this box, which other local processes can't dial).
NID_PYRO_HOST=127.0.0.1

# Local S3-compatible store (docker). These route both S3 paths at it:
#  - core.io.s3.S3Manager (provisioning feed, etc.) via the NID_S3_* override
#    (bypasses CyberArk + the built-in BNP endpoints), and
#  - the ingestion local_fs `upload` step's plain boto3 client via the AWS_*/
#    S3_ENDPOINT_URL env.
NID_S3_ENDPOINT_URL=http://localhost:9000
NID_S3_ACCESS_KEY=minioadmin
NID_S3_SECRET_KEY=minioadmin
NID_S3_VERIFY=0
S3_ENDPOINT_URL=http://localhost:9000
AWS_ACCESS_KEY_ID=minioadmin
AWS_SECRET_ACCESS_KEY=minioadmin
AWS_DEFAULT_REGION=us-east-1
