Commit c029807
authored
feat: Horizon upgrade support and improved development workflow (#811)
* fix(docker): resolve dev container startup and standardize compose configs
- Fix dev containers exiting immediately by adding proper entrypoints
- Consolidate profiling config from docker-compose.prof.yml into dev.yml
- Standardize volume mounts and add missing horizon.json mappings
- Update configs for Horizon upgrade (GraphTallyCollector vs TAPVerifier)
- Add profiling support with proper security options and permissions
Resolves issues preventing indexer-service and tap-agent from running in dev mode
* refactor(indexer-service): update for Horizon upgrade and improve config generation
- Migrate from TAPVerifier to GraphTallyCollector contract addresses
- Replace sed-based template config with inline TOML generation
- Add horizon.json support and Horizon migration detection
- Streamline profiling configuration and reduce script verbosity
* refactor(tap-agent): update for Horizon upgrade and add profiling capabilities
- Migrate from TAPVerifier to GraphTallyCollector contract addresses
- Replace sed-based config templates with inline generation
- Bundle horizon.json and .env files in Docker image
- Simplify startup script structure and improve logging
- Remove indexer-service dependency for independent startup
* chore(dev-workflow): improve container management
- Separate prod/dev workflows and add services-status command
- Improve container cleanup and colorized output for better UX
* chore(test): remove profiling script no longer needed
* fix(integration-tests): update fund_escrow.sh for correct file paths and formatting
- Fix contract file paths to use ../contrib/local-network/ directory
- Update error message to reflect correct execution directory
- Remove set -e to allow graceful error handling
- Clean up formatting and spacing consistency
* feat(setup): add timing reports and improve disk usage tracking
- Add script execution time tracking with minutes/seconds display
- Improve Docker size calculation with robust fallback methods
- Remove debug output (ls, pwd) and unused environment variables
- Update gateway container to use horizon.json instead of tap-contracts.json
- Disable set -e to allow graceful error handling
- Add structured completion report with timing and disk usage metrics
* fix(test): clone local-network submodule necessary for testing containers
* fix(test): remove unnecessary sections for compose file1 parent 038ff50 commit c029807
File tree
13 files changed
+429
-346
lines changed- .github/workflows
- contrib
- indexer-service
- tap-agent
- integration-tests
13 files changed
+429
-346
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
48 | 59 | | |
49 | 60 | | |
50 | 61 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
| 4 | + | |
| 5 | + | |
4 | 6 | | |
5 | 7 | | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | 8 | | |
| 9 | + | |
10 | 10 | | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
11 | 14 | | |
| 15 | + | |
12 | 16 | | |
13 | 17 | | |
14 | 18 | | |
15 | 19 | | |
| 20 | + | |
16 | 21 | | |
17 | 22 | | |
18 | 23 | | |
| |||
23 | 28 | | |
24 | 29 | | |
25 | 30 | | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
26 | 36 | | |
27 | 37 | | |
28 | 38 | | |
29 | 39 | | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | 40 | | |
34 | 41 | | |
35 | | - | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
36 | 45 | | |
37 | 46 | | |
| 47 | + | |
38 | 48 | | |
39 | | - | |
| 49 | + | |
40 | 50 | | |
41 | 51 | | |
42 | 52 | | |
| 53 | + | |
43 | 54 | | |
44 | 55 | | |
45 | 56 | | |
| |||
51 | 62 | | |
52 | 63 | | |
53 | 64 | | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
54 | 70 | | |
55 | 71 | | |
56 | 72 | | |
| |||
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | 8 | | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | 12 | | |
14 | 13 | | |
15 | 14 | | |
| |||
33 | 32 | | |
34 | 33 | | |
35 | 34 | | |
36 | | - | |
37 | 35 | | |
38 | 36 | | |
| 37 | + | |
39 | 38 | | |
40 | | - | |
41 | 39 | | |
42 | 40 | | |
43 | 41 | | |
| 42 | + | |
44 | 43 | | |
45 | | - | |
46 | 44 | | |
47 | 45 | | |
48 | 46 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
24 | 25 | | |
25 | 26 | | |
| 27 | + | |
26 | 28 | | |
27 | 29 | | |
28 | 30 | | |
| |||
0 commit comments