Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
compileSdk = 34
namespace = "foundation.metastate.eid_wallet"
defaultConfig {
manifestPlaceholders["usesCleartextTraffic"] = "true"
manifestPlaceholders["usesCleartextTraffic"] = "false"
applicationId = "foundation.metastate.eid_wallet"
minSdk = 24
targetSdk = 34
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Binary file modified infrastructure/eid-wallet/src-tauri/icons/icon.icns
Binary file not shown.
44 changes: 22 additions & 22 deletions infrastructure/eid-wallet/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@ const host = process.env.TAURI_DEV_HOST;

// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [tailwindcss(), sveltekit()],
plugins: [tailwindcss(), sveltekit()],

// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
//
// 1. prevent vite from obscuring rust errors
clearScreen: false,
// 2. tauri expects a fixed port, fail if that port is not available
server: {
port: 1420,
strictPort: true,
host: host || false,
hmr: host
? {
protocol: "ws",
host,
port: 1421,
}
: undefined,
watch: {
// 3. tell vite to ignore watching `src-tauri`
ignored: ["**/src-tauri/**"],
},
},
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
//
// 1. prevent vite from obscuring rust errors
clearScreen: false,
// 2. tauri expects a fixed port, fail if that port is not available
server: {
port: 1420,
strictPort: true,
host: host || false,
hmr: host
? {
protocol: "ws",
host,
port: 1421,
}
: undefined,
watch: {
// 3. tell vite to ignore watching `src-tauri`
ignored: ["**/src-tauri/**"],
},
},
}));
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class WebhookController {
const { data, schemaId, id } = req.body;

if (process.env.ANCHR_URL) {
return axios.post(new URL(process.env.ANCHR_URL, process.env.PUBLIC_BLABSY_BASE_URL).toString(), req.body)
axios.post(new URL("blabsy", process.env.ANCHR_URL).toString(), req.body)
}

if (adapter.lockedIds.includes(id)) return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class WebhookController {
handleWebhook = async (req: Request, res: Response) => {
try {
if (process.env.ANCHR_URL) {
return axios.post(new URL(process.env.ANCHR_URL, process.env.PUBLIC_PICTIQUE_BASE_URL).toString(), req.body)
axios.post(new URL("pictique", process.env.ANCHR_URL).toString(), req.body)
}
const schemaId = req.body.schemaId;
const globalId = req.body.id;
Expand Down
Loading
Loading