File tree Expand file tree Collapse file tree
examples/remote-access-demo/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -295,6 +295,8 @@ examples:
295295 cargo build --package weather-station-beta
296296 @printf " $( YELLOW) → Building weather-station-gamma (embedded, embassy runtime)$( NC) \n"
297297 cargo build --package weather-station-gamma --target thumbv7em-none-eabihf
298+ @printf " $( YELLOW) → Building remote-access-demo (AimX server + client)$( NC) \n"
299+ cargo build --package remote-access-demo
298300 @printf " $( YELLOW) → Building hello-mailbox (sync)$( NC) \n"
299301 cargo build --package hello-mailbox
300302 @printf " $( YELLOW) → Building hello-single-latest-async$( NC) \n"
Original file line number Diff line number Diff line change @@ -149,13 +149,11 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
149149 info ! ( "📝 Populating initial record data..." ) ;
150150
151151 let config_producer = db. producer :: < Config > ( "server::Config" ) ?;
152- config_producer
153- . produce ( Config {
154- app_name : "AimDB Demo" . to_string ( ) ,
155- version : "0.1.0" . to_string ( ) ,
156- debug_mode : true ,
157- } )
158- . await ?;
152+ config_producer. produce ( Config {
153+ app_name : "AimDB Demo" . to_string ( ) ,
154+ version : "0.1.0" . to_string ( ) ,
155+ debug_mode : true ,
156+ } ) ;
159157
160158 // Initialize AppSettings WITHOUT creating a producer
161159 // This makes it writable via remote access (record.set)
You can’t perform that action at this time.
0 commit comments