Skip to content

Commit 8df0b20

Browse files
authored
Merge pull request #1 from Zipasaurus/local-note-
Initial working template for local project management app
2 parents b56fa12 + fec26a5 commit 8df0b20

5 files changed

Lines changed: 1265 additions & 0 deletions

File tree

.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
```
2+
# Logs and temp files
3+
*.log
4+
*.tmp
5+
*.swp
6+
7+
# Environment
8+
.env
9+
.env.local
10+
*.env.*
11+
12+
# Editors
13+
.vscode/
14+
.idea/
15+
16+
# Dependencies
17+
node_modules/
18+
venv/
19+
.venv/
20+
__pycache__/
21+
.mypy_cache/
22+
.pytest_cache/
23+
dist/
24+
build/
25+
target/
26+
.gradle/
27+
28+
# System files
29+
.DS_Store
30+
Thumbs.db
31+
32+
# Compiled files
33+
*.pyc
34+
*.class
35+
*.o
36+
*.exe
37+
*.dll
38+
*.so
39+
*.a
40+
*.obj
41+
*.out
42+
43+
# Coverage
44+
coverage/
45+
htmlcov/
46+
.coverage
47+
48+
# Compressed files
49+
*.zip
50+
*.gz
51+
*.tar
52+
*.tgz
53+
*.bz2
54+
*.xz
55+
*.7z
56+
*.rar
57+
*.zst
58+
*.lz4
59+
*.lzh
60+
*.cab
61+
*.arj
62+
*.rpm
63+
*.deb
64+
*.Z
65+
*.lz
66+
*.lzo
67+
*.tar.gz
68+
*.tar.bz2
69+
*.tar.xz
70+
*.tar.zst
71+
```

0 commit comments

Comments
 (0)