Skip to content

Commit 7477a9a

Browse files
committed
feat: initial workshop
0 parents  commit 7477a9a

24 files changed

+7698
-0
lines changed

.gitignore

Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
2+
# Created by https://www.gitignore.io/api/node,react,macos,webstorm
3+
# Edit at https://www.gitignore.io/?templates=node,react,macos,webstorm
4+
5+
### macOS ###
6+
# General
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
# Icon must end with two \r
12+
Icon
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### Node ###
34+
# Logs
35+
logs
36+
*.log
37+
npm-debug.log*
38+
yarn-debug.log*
39+
yarn-error.log*
40+
lerna-debug.log*
41+
42+
# Diagnostic reports (https://nodejs.org/api/report.html)
43+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
44+
45+
# Runtime data
46+
pids
47+
*.pid
48+
*.seed
49+
*.pid.lock
50+
51+
# Directory for instrumented libs generated by jscoverage/JSCover
52+
lib-cov
53+
54+
# Coverage directory used by tools like istanbul
55+
coverage
56+
*.lcov
57+
58+
# nyc hetOfDeTest coverage
59+
.nyc_output
60+
61+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
62+
.grunt
63+
64+
# Bower dependency directory (https://bower.io/)
65+
bower_components
66+
67+
# node-waf configuration
68+
.lock-wscript
69+
70+
# Compiled binary addons (https://nodejs.org/api/addons.html)
71+
build/Release
72+
73+
# Dependency directories
74+
node_modules/
75+
jspm_packages/
76+
77+
# TypeScript v1 declaration files
78+
typings/
79+
80+
# TypeScript cache
81+
*.tsbuildinfo
82+
83+
# Optional npm cache directory
84+
.npm
85+
86+
# Optional eslint cache
87+
.eslintcache
88+
89+
# Optional REPL history
90+
.node_repl_history
91+
92+
# Output of 'npm pack'
93+
*.tgz
94+
95+
# Yarn Integrity file
96+
.yarn-integrity
97+
98+
# dotenv environment variables file
99+
.env
100+
.env.test
101+
.env.production
102+
103+
# parcel-bundler cache (https://parceljs.org/)
104+
.cache
105+
106+
# next.js build output
107+
.next
108+
109+
# nuxt.js build output
110+
.nuxt
111+
112+
# rollup.js default build output
113+
dist/
114+
115+
# Uncomment the public line if your project uses Gatsby
116+
# https://nextjs.org/blog/next-9-1#public-directory-support
117+
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
118+
# public
119+
120+
# Storybook build outputs
121+
.out
122+
.storybook-out
123+
124+
# vuepress build output
125+
.vuepress/dist
126+
127+
# Serverless directories
128+
.serverless/
129+
130+
# FuseBox cache
131+
.fusebox/
132+
133+
# DynamoDB Local files
134+
.dynamodb/
135+
136+
# Temporary folders
137+
tmp/
138+
temp/
139+
140+
### react ###
141+
.DS_*
142+
**/*.backup.*
143+
**/*.back.*
144+
145+
node_modules
146+
147+
*.sublime*
148+
149+
psd
150+
thumb
151+
sketch
152+
153+
### WebStorm ###
154+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
155+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
156+
157+
# User-specific stuff
158+
.idea
159+
.idea/**/workspace.xml
160+
.idea/**/tasks.xml
161+
.idea/**/usage.statistics.xml
162+
.idea/**/dictionaries
163+
.idea/**/shelf
164+
165+
# Generated files
166+
.idea/**/contentModel.xml
167+
168+
# Sensitive or high-churn files
169+
.idea/**/dataSources/
170+
.idea/**/dataSources.ids
171+
.idea/**/dataSources.local.xml
172+
.idea/**/sqlDataSources.xml
173+
.idea/**/dynamic.xml
174+
.idea/**/uiDesigner.xml
175+
.idea/**/dbnavigator.xml
176+
177+
# Gradle
178+
.idea/**/gradle.xml
179+
.idea/**/libraries
180+
181+
# Gradle and Maven with auto-import
182+
# When using Gradle or Maven with auto-import, you should exclude module files,
183+
# since they will be recreated, and may cause churn. Uncomment if using
184+
# auto-import.
185+
# .idea/shared.xml
186+
# .idea/*.iml
187+
# .idea/shared
188+
# *.iml
189+
# *.ipr
190+
191+
# CMake
192+
cmake-build-*/
193+
194+
# Mongo Explorer plugin
195+
.idea/**/mongoSettings.xml
196+
197+
# File-based project format
198+
*.iws
199+
200+
# IntelliJ
201+
out/
202+
203+
# mpeltonen/sbt-idea plugin
204+
.idea_modules/
205+
206+
# JIRA plugin
207+
atlassian-ide-plugin.xml
208+
209+
# Cursive Clojure plugin
210+
.idea/replstate.xml
211+
212+
# Crashlytics plugin (for Android Studio and IntelliJ)
213+
com_crashlytics_export_strings.xml
214+
crashlytics.properties
215+
crashlytics-build.properties
216+
fabric.properties
217+
218+
# Editor-based Rest Client
219+
.idea/httpRequests
220+
221+
# Android studio 3.1+ serialized cache file
222+
.idea/caches/build_file_checksums.ser
223+
224+
### WebStorm Patch ###
225+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
226+
227+
# *.iml
228+
# shared.xml
229+
.idea/misc.xml
230+
# *.ipr
231+
232+
# Sonarlint plugin
233+
.idea/**/sonarlint/
234+
235+
# SonarQube Plugin
236+
.idea/**/sonarIssues.xml
237+
238+
# Markdown Navigator plugin
239+
.idea/**/markdown-navigator.xml
240+
.idea/**/markdown-navigator/
241+
242+
# End of https://www.gitignore.io/api/node,react,macos,webstorm
243+
/creds.json
244+
.aider*
245+
chroma_data

.prettier

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"trailingComma": "es5",
3+
"tabWidth": 2,
4+
"semi": false,
5+
"singleQuote": true
6+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.

chroma_data/bd196ddc-e5b9-4120-b2b2-b88e2dec7c1d/link_lists.bin

Whitespace-only changes.

chroma_data/chroma.sqlite3

4.67 MB
Binary file not shown.

0 commit comments

Comments
 (0)