Skip to content

Commit 15eacbd

Browse files
committed
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.
1 parent 4e860d6 commit 15eacbd

File tree

3 files changed

+30
-10
lines changed

3 files changed

+30
-10
lines changed

.gitignore

-7
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ yarn-error.log*
77
pnpm-debug.log*
88
lerna-debug.log*
99

10-
node_modules
11-
dist
12-
dist-ssr
13-
*.local
14-
1510
# Editor directories and files
1611
.vscode
1712
.vscode/*
@@ -25,6 +20,4 @@ dist-ssr
2520
*.sw?
2621

2722
# Etc
28-
.routify
29-
build
3023
psd

app/.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Generated by Cargo
22
# will have compiled files and executables
3-
/target/
4-
app.db
5-
log.txt
3+
/target/

gui/.gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode
17+
.vscode/*
18+
!.vscode/extensions.json
19+
.idea
20+
.DS_Store
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw?
26+
27+
# Etc
28+
.routify
29+
build

0 commit comments

Comments
 (0)