refactor(coordinator): standardize database path to follow blockchain-node pattern

- Change coordinator database from /opt/data/coordinator.db to ./data/coordinator.db
- Update config.py to use relative path consistent with blockchain-node
- Update deployment scripts to use /opt/coordinator-api/data/coordinator.db
- Add data directory creation in init_db() for consistency
- Update .env.example files to reflect new standard
- Maintain backward compatibility for production deployment
This commit is contained in:
oib
2026-02-27 17:32:00 +01:00
parent d023654e74
commit 27e836bf3f
9 changed files with 80 additions and 44 deletions

View File

@@ -0,0 +1,12 @@
[package]
name = "gpu_zk_research"
version = "0.1.0"
edition = "2021"
[dependencies]
halo2 = { version = "0.1.0-beta.2" }
halo2_proofs = { version = "0.1.0-beta.2" }
halo2_gadgets = { version = "0.1.0-beta.2" }
pasta_curves = "0.5"
rand = "0.8"
anyhow = "1.0"