Skip to content

Commit 50c47c0

Browse files
committed
v1.0.0
0 parents  commit 50c47c0

Some content is hidden

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

74 files changed

+31502
-0
lines changed

.gitignore

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
.pio
2+
# .vscode/.browse.c_cpp.db*
3+
# .vscode/c_cpp_properties.json
4+
# .vscode/launch.json
5+
# .vscode/ipch
6+
7+
# VSCode
8+
.vscode/*
9+
# !.vscode/settings.json
10+
# !.vscode/tasks.json
11+
# !.vscode/extensions.json
12+
# !.vscode/*.code-snippets
13+
14+
# Local History for Visual Studio Code
15+
.history/
16+
17+
# Built Visual Studio Code Extensions
18+
*.vsix
19+
20+
# MACOS General
21+
.DS_Store
22+
.AppleDouble
23+
.LSOverride
24+
25+
# Icon must end with two \r
26+
Icon
27+
28+
# Thumbnails
29+
._*
30+
31+
# Files that might appear in the root of a volume
32+
.DocumentRevisions-V100
33+
.fseventsd
34+
.Spotlight-V100
35+
.TemporaryItems
36+
.Trashes
37+
.VolumeIcon.icns
38+
.com.apple.timemachine.donotpresent
39+
40+
# Directories potentially created on remote AFP share
41+
.AppleDB
42+
.AppleDesktop
43+
Network Trash Folder
44+
Temporary Items
45+
.apdisk
46+
47+
Thumbs.db
48+
49+
# Thumbnails
50+
._*
51+
52+
# Files that might appear in the root of a volume
53+
.DocumentRevisions-V100
54+
.fseventsd
55+
.Spotlight-V100
56+
.TemporaryItems
57+
.Trashes
58+
.VolumeIcon.icns
59+
.com.apple.timemachine.donotpresent
60+
61+
# Directories potentially created on remote AFP share
62+
.AppleDB
63+
.AppleDesktop
64+
Network Trash Folder
65+
Temporary Items
66+
.apdisk
67+
68+
### Yarn
69+
# Logs
70+
logs
71+
*.log
72+
npm-debug.log*
73+
yarn-debug.log*
74+
yarn-error.log*
75+
lerna-debug.log*
76+
77+
# yarn v2
78+
.yarn/*
79+
# !.yarn/cache # Uncomment for zero-install
80+
!.yarn/releases
81+
!.yarn/plugins
82+
!.yarn/sdks
83+
!.yarn/versions
84+
.pnp.* # Comment for zero-install
85+
86+
### Minimized files
87+
*.min.*
88+
temp
89+
src/temp
90+
91+
# Dotenv
92+
.env
93+
.env.*
94+
!.env.example
95+
96+
# Composer
97+
/vendor
98+
99+
# Diagnostic reports (https://nodejs.org/api/report.html)
100+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
101+
102+
# Dependency directories
103+
node_modules/
104+
jspm_packages/
105+
106+
# Snowpack dependency directory (https://snowpack.dev/)
107+
web_modules/
108+
109+
# TypeScript cache
110+
*.tsbuildinfo
111+
112+
# Optional npm cache directory
113+
.npm
114+
115+
# Custom
116+
datasheet
117+
tmp
118+
web/data/**
119+
!web/data/logs
120+
web/temp
121+
web/assets
122+
web/src/temp
123+
schematics/*backups
124+
schematics/CAM/*backups
125+
genssl.sh

0 commit comments

Comments
 (0)