Candle commited on
Commit ·
a70644b
1
Parent(s): 5cfd3aa
stuff
Browse files- .gitignore +32 -0
- README.md +3 -0
.gitignore
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.venv/
|
| 2 |
+
venv/
|
| 3 |
+
node_modules/
|
| 4 |
+
.DS_Store
|
| 5 |
+
# Logs
|
| 6 |
+
logs
|
| 7 |
+
*.log
|
| 8 |
+
npm-debug.log*
|
| 9 |
+
yarn-debug.log*
|
| 10 |
+
yarn-error.log*
|
| 11 |
+
pnpm-debug.log*
|
| 12 |
+
lerna-debug.log*
|
| 13 |
+
|
| 14 |
+
node_modules
|
| 15 |
+
dist
|
| 16 |
+
dist-ssr
|
| 17 |
+
*.local
|
| 18 |
+
.wrangler
|
| 19 |
+
|
| 20 |
+
# Editor directories and files
|
| 21 |
+
.vscode/*
|
| 22 |
+
!.vscode/extensions.json
|
| 23 |
+
.idea
|
| 24 |
+
.DS_Store
|
| 25 |
+
*.suo
|
| 26 |
+
*.ntvs*
|
| 27 |
+
*.njsproj
|
| 28 |
+
*.sln
|
| 29 |
+
*.sw?
|
| 30 |
+
.vercel
|
| 31 |
+
.env
|
| 32 |
+
.env*.local
|
README.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SpriteDX Dataset
|
| 2 |
+
|
| 3 |
+
Starting this repo to store collected data from SpriteDX project.
|