refactor: centralize all dynamic data to /opt/aitbc/data directory

- Move blockchain data from apps/blockchain-node/data to centralized data directory
- Update configuration files to reference new data paths
- Remove old data directory structure
- Maintain existing database files and chain data
This commit is contained in:
2026-03-23 09:47:51 +01:00
parent e1184bcc13
commit 81e96f102f
3 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ class ChainSettings(BaseSettings):
chain_id: str = ""
supported_chains: str = "ait-devnet" # Comma-separated list of supported chain IDs
db_path: Path = Path("./data/chain.db")
db_path: Path = Path("/opt/aitbc/data/chain.db")
rpc_bind_host: str = "127.0.0.1"
rpc_bind_port: int = 8080