Skip to content
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9055cce
Crate folders for mono in services.yml
genedna Jun 2, 2025
e030826
Fix crate https folder error
genedna Jun 2, 2025
48bd77e
Merge branch 'web3infra-foundation:main' into main
genedna Jun 5, 2025
1f108ac
Merge branch 'web3infra-foundation:main' into main
genedna Jun 9, 2025
ca9e48e
Testing {{github.workspace}}
genedna Jun 9, 2025
c59c25b
Start mono service in the services.yml
genedna Jun 9, 2025
ec172b1
Fix the mono run in the background in the GitHub Action
genedna Jun 9, 2025
3438381
Curl get the status code from /api/v1/status
genedna Jun 9, 2025
2f70b33
Add a new service_test.rs for integration service with mono
genedna Jun 9, 2025
7646481
Fix the service_test.rs
genedna Jun 10, 2025
4347c2c
Move the service_test.rs to mega/tests
genedna Jun 10, 2025
b475796
Add --skip service_test in the base.yml
genedna Jun 10, 2025
0e8d029
Fix the --skip service_test argument
genedna Jun 10, 2025
b1943d0
Try to skip service_test
genedna Jun 10, 2025
938005c
Try to skip service_test
genedna Jun 10, 2025
5e6d0ce
Try to skip service_test
genedna Jun 10, 2025
cf2b049
Remove build mono from base.yml
genedna Jun 10, 2025
824a5c7
Try to --exclude libra
genedna Jun 10, 2025
cbba0af
Only test libra
genedna Jun 10, 2025
d36f263
Refactoring the test
genedna Jun 10, 2025
0039e34
Merge branch 'main' into main
genedna Jun 10, 2025
d77c978
Merge branch 'web3infra-foundation:main' into main
genedna Jun 10, 2025
de19b94
Merge branch 'web3infra-foundation:main' into main
genedna Jun 11, 2025
758ca48
Add common and mercury in the full test action
genedna Jun 11, 2025
eb3ca92
Fix --manifest-path param error in the Action
genedna Jun 11, 2025
bbbf373
Add more modules in the full test action
genedna Jun 11, 2025
1af3a16
Move libra test to service.yml
genedna Jun 11, 2025
2061f5a
Merge branch 'main' into main
genedna Jun 13, 2025
4920709
Update services action and refactoring README.md
genedna Jun 13, 2025
fa23ad3
Merge branch 'web3infra-foundation:main' into main
genedna Jun 13, 2025
9e1ec3d
Update services action
genedna Jun 13, 2025
70b6a18
Merge branch 'web3infra-foundation:main' into main
genedna Jun 14, 2025
760f024
Merge branch 'web3infra-foundation:main' into main
genedna Jun 15, 2025
67b4827
Update service.yml
genedna Jun 15, 2025
fc165c5
Merge branch 'main' into main
genedna Jun 17, 2025
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
10 changes: 5 additions & 5 deletions common/src/config.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
//! Configuration management for the Mono and Mega application
//! This module provides functionality to load, parse, and manage configuration settings

use std::rc::Rc;
use std::path::PathBuf;
use std::cell::RefCell;
use std::collections::HashMap;
use std::path::PathBuf;
use std::rc::Rc;

use c::{ConfigError, FileFormat};
pub use config as c;
use c::{ConfigError, FileFormat};

use config::builder::DefaultState;
use config::{Source, ValueKind};
use config::builder::DefaultState;
use serde::{Deserialize, Deserializer, Serialize};

use callisto::sea_orm_active_enums::StorageTypeEnum;
Expand Down Expand Up @@ -77,7 +77,7 @@ pub fn mega_cache() -> PathBuf {
.unwrap()
.to_string()
});

PathBuf::from(cache_dir)
}

Expand Down
Loading