Migrate Angular UI from portmaster-ui to desktop/angular. Update Earthfile to build libs, UI and tauri-builtin

This commit is contained in:
Patrick Pacher
2024-03-20 10:43:29 +01:00
parent 66381baa1a
commit 4b77945517
922 changed files with 84071 additions and 26 deletions

View File

@@ -0,0 +1,22 @@
/*
export const environment = new class {
readonly supportHub = "https://support.safing.io"
readonly production = true;
get httpAPI() {
return `http://${window.location.host}/api`
}
get portAPI() {
const result = `ws://${window.location.host}/api/database/v1`;
return result;
}
}
*/
export const environment = {
production: false,
portAPI: "ws://127.0.0.1:817/api/database/v1",
httpAPI: "http://127.0.0.1:817/api",
supportHub: "https://support.safing.io"
};