Skip to content

Commit baef2c2

Browse files
committed
Fixed some bugs and adding Pre-Release version
1 parent 83058ee commit baef2c2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

frontend/src-tauri/src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
use std::process::{Command, Child};
1+
use std::process::{Child};
22
use tauri::{Manager};
33
use std::sync::Mutex;
44

55
fn 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
}

frontend/src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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",

0 commit comments

Comments
 (0)