From 15eacbd20f0842a795d1a67462dea47b5fd6c09e Mon Sep 17 00:00:00 2001 From: Abraham Date: Sun, 11 Jun 2023 19:22:02 +0500 Subject: [PATCH] App architecture modifications. Now GUI and the app itself is divided into two different binaries. The app also provides system tray icon. Whereas the GUI can be used to configure the app. --- .gitignore | 7 ------- app/.gitignore | 4 +--- gui/.gitignore | 29 +++++++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 10 deletions(-) create mode 100644 gui/.gitignore diff --git a/.gitignore b/.gitignore index 5740407..311e0e1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,11 +7,6 @@ yarn-error.log* pnpm-debug.log* lerna-debug.log* -node_modules -dist -dist-ssr -*.local - # Editor directories and files .vscode .vscode/* @@ -25,6 +20,4 @@ dist-ssr *.sw? # Etc -.routify -build psd \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore index fca3f36..62a7761 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -1,5 +1,3 @@ # Generated by Cargo # will have compiled files and executables -/target/ -app.db -log.txt \ No newline at end of file +/target/ \ No newline at end of file diff --git a/gui/.gitignore b/gui/.gitignore new file mode 100644 index 0000000..706db13 --- /dev/null +++ b/gui/.gitignore @@ -0,0 +1,29 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +# Etc +.routify +build \ No newline at end of file