Skip to content

Commit ba1512a

Browse files
committed
feat: initial commit
0 parents  commit ba1512a

114 files changed

Lines changed: 24627 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug
4+
target
5+
src-tauri/gen/schemas
6+
7+
# These are backup files generated by rustfmt
8+
**/*.rs.bk
9+
10+
# MSVC Windows builds of rustc generate these, which store debugging information
11+
*.pdb
12+
13+
# Generated by cargo mutants
14+
# Contains mutation testing data
15+
**/mutants.out*/
16+
17+
# Logs
18+
logs
19+
*.log
20+
npm-debug.log*
21+
yarn-debug.log*
22+
yarn-error.log*
23+
lerna-debug.log*
24+
25+
# Diagnostic reports (https://nodejs.org/api/report.html)
26+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
27+
28+
# Runtime data
29+
pids
30+
*.pid
31+
*.seed
32+
*.pid.lock
33+
34+
# Directory for instrumented libs generated by jscoverage/JSCover
35+
lib-cov
36+
37+
# Coverage directory used by tools like istanbul
38+
coverage
39+
*.lcov
40+
41+
# nyc test coverage
42+
.nyc_output
43+
44+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
45+
.grunt
46+
47+
# Bower dependency directory (https://bower.io/)
48+
bower_components
49+
50+
# node-waf configuration
51+
.lock-wscript
52+
53+
# Compiled binary addons (https://nodejs.org/api/addons.html)
54+
build/Release
55+
56+
# Dependency directories
57+
node_modules/
58+
jspm_packages/
59+
60+
# Snowpack dependency directory (https://snowpack.dev/)
61+
web_modules/
62+
63+
# TypeScript cache
64+
*.tsbuildinfo
65+
66+
# Optional npm cache directory
67+
.npm
68+
69+
# Optional eslint cache
70+
.eslintcache
71+
72+
# Optional stylelint cache
73+
.stylelintcache
74+
75+
# Optional REPL history
76+
.node_repl_history
77+
78+
# Output of 'npm pack'
79+
*.tgz
80+
81+
# Yarn Integrity file
82+
.yarn-integrity
83+
84+
# dotenv environment variable files
85+
.env
86+
.env.*
87+
!.env.example
88+
89+
# parcel-bundler cache (https://parceljs.org/)
90+
.cache
91+
.parcel-cache
92+
93+
# Next.js build output
94+
.next
95+
out
96+
97+
# Nuxt.js build / generate output
98+
.nuxt
99+
dist
100+
.output
101+
102+
# Gatsby files
103+
.cache/
104+
# Comment in the public line in if your project uses Gatsby and not Next.js
105+
# https://nextjs.org/blog/next-9-1#public-directory-support
106+
# public
107+
108+
# vuepress build output
109+
.vuepress/dist
110+
111+
# vuepress v2.x temp and cache directory
112+
.temp
113+
.cache
114+
115+
# Sveltekit cache directory
116+
.svelte-kit/
117+
118+
# vitepress build output
119+
**/.vitepress/dist
120+
121+
# vitepress cache directory
122+
**/.vitepress/cache
123+
124+
# Docusaurus cache and generated files
125+
.docusaurus
126+
127+
# Serverless directories
128+
.serverless/
129+
130+
# FuseBox cache
131+
.fusebox/
132+
133+
# DynamoDB Local files
134+
.dynamodb/
135+
136+
# Firebase cache directory
137+
.firebase/
138+
139+
# TernJS port file
140+
.tern-port
141+
142+
# Stores VSCode versions used for testing VSCode extensions
143+
.vscode-test
144+
145+
# yarn v3
146+
.pnp.*
147+
.yarn/*
148+
!.yarn/patches
149+
!.yarn/plugins
150+
!.yarn/releases
151+
!.yarn/sdks
152+
!.yarn/versions
153+
154+
# Vite files
155+
vite.config.js.timestamp-*
156+
vite.config.ts.timestamp-*
157+
.vite/
158+
.claude
159+
/ui/CLAUDE.md

.prototools

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pnpm = "~10"
2+
node = "~24"
3+
rust = "1.92.0"

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "ntfy-desktop",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "tauri dev",
7+
"build": "tauri build",
8+
"build:debug": "tauri build --debug",
9+
"build:msi": "tauri build --bundles msi",
10+
"build:nsis": "tauri build --bundles nsis",
11+
"release": "tauri build --bundles msi,nsis",
12+
"clean": "rimraf src-tauri/target ui/dist",
13+
"ui:dev": "pnpm --filter ui dev",
14+
"ui:build": "pnpm --filter ui build",
15+
"ui:test": "pnpm --filter ui test",
16+
"ui:lint": "pnpm --filter ui lint"
17+
},
18+
"devDependencies": {
19+
"@tauri-apps/cli": "^2",
20+
"rimraf": "^6"
21+
}
22+
}

0 commit comments

Comments
 (0)