File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1- use std:: process:: { Command , Child } ;
1+ use std:: process:: { Child } ;
22use tauri:: { Manager } ;
33use std:: sync:: Mutex ;
44
55fn start_flask_backend ( ) -> std:: process:: Child {
6- std:: process:: Command :: new ( "./bin/app" )
6+ let path = "./bin/app" ;
7+ std:: process:: Command :: new ( path)
78 . spawn ( )
89 . unwrap_or_else ( |err| panic ! ( "Failed to start Flask backend at {path}: {err}" ) )
910}
Original file line number Diff line number Diff line change 11{
22 "$schema" : " ../node_modules/@tauri-apps/cli/config.schema.json" ,
3- "productName" : " CBAXIV " ,
3+ "productName" : " LightCBA " ,
44 "version" : " 0.1.0" ,
5- "identifier" : " com.tauri.dev " ,
5+ "identifier" : " com.cybertaco360.lightcba " ,
66 "build" : {
77 "frontendDist" : " ../dist" ,
88 "devUrl" : " http://localhost:5173" ,
You can’t perform that action at this time.
0 commit comments