move reportUrl and reportProjectId from config to setting

This commit is contained in:
tzw
2024-10-07 20:42:45 +06:30
parent ff55b219e3
commit 966758d2f8
15 changed files with 75 additions and 69 deletions

View File

@@ -9,10 +9,12 @@ void main() {
Config(
flavor: Flavor.DEV,
color: Colors.blue,
reportURL: "http://petrok.mokkon.com:8091",
reportProjectID: "fcs-dev",
apiURL: "http://192.168.1.155:7777",
bucketName: "gs://fcs-dev1-us",
// reportURL: "http://petrok.mokkon.com:8091",
// reportProjectID: "fcs-dev",
// bucketName: "gs://fcs-dev1-us",
level: Level.ALL);
runApp(App(title: "FCS - Dev local",));
runApp(App(
title: "FCS - Dev local",
));
}