innovencelabs / byteshare

Large file sharing app [Community Edition]
https://byteshare.io
BSD 3-Clause "New" or "Revised" License
12 stars 5 forks source link

Create desktop app version of ByteShare #211

Open ambujraj opened 2 months ago

ambujraj commented 2 months ago

Is your feature request related to a problem? Please describe. There should be app version of ByteShare

Describe the solution you'd like Create app version of ByteShare.

ambujraj commented 2 months ago

Follow this documentation: https://tauri.app/v1/guides/getting-started/setup/next-js/

ambujraj commented 2 months ago

Also secure the env variables

import { secureStorage } from '@tauri-apps/api/secure-storage';

await secureStorage.write('key', 'value');

const value = await secureStorage.read('key');