git things, versioning things
- SHA
95ef61e0e1a778317878d38ce2aaac34377fc77e- Parents
-
a7016b8 - Tree
76d6d5b
95ef61e
95ef61e0e1a778317878d38ce2aaac34377fc77ea7016b8
76d6d5b| Status | File | + | - |
|---|---|---|---|
| A |
.gitignore
|
195 | 0 |
| A |
.tool-versions
|
1 | 0 |
| A |
README.md
|
1 | 0 |
.gitignoreadded@@ -0,0 +1,195 @@ | |||
| 1 | +# cast a wide net | ||
| 2 | + | ||
| 3 | +# Python | ||
| 4 | +*.pyc | ||
| 5 | +*.pyo | ||
| 6 | +*.pyd | ||
| 7 | +__pycache__/ | ||
| 8 | +*.so | ||
| 9 | +.Python | ||
| 10 | +env/ | ||
| 11 | +venv/ | ||
| 12 | +ENV/ | ||
| 13 | +env.bak/ | ||
| 14 | +venv.bak/ | ||
| 15 | +.venv/ | ||
| 16 | +.jubenv/ | ||
| 17 | +pip-log.txt | ||
| 18 | +pip-delete-this-directory.txt | ||
| 19 | +.pytest_cache/ | ||
| 20 | +*.egg-info/ | ||
| 21 | +.coverage | ||
| 22 | +htmlcov/ | ||
| 23 | +.tox/ | ||
| 24 | +.cache | ||
| 25 | +nosetests.xml | ||
| 26 | +coverage.xml | ||
| 27 | +*.cover | ||
| 28 | +.hypothesis/ | ||
| 29 | + | ||
| 30 | +# Django | ||
| 31 | +*.log | ||
| 32 | +local_settings.py | ||
| 33 | +db.sqlite3 | ||
| 34 | +db.sqlite3-journal | ||
| 35 | +media/ | ||
| 36 | +staticfiles/ | ||
| 37 | +.static_storage/ | ||
| 38 | +.media/ | ||
| 39 | +celerybeat-schedule | ||
| 40 | +celerybeat.pid | ||
| 41 | + | ||
| 42 | +# Node.js | ||
| 43 | +node_modules/ | ||
| 44 | +npm-debug.log* | ||
| 45 | +yarn-debug.log* | ||
| 46 | +yarn-error.log* | ||
| 47 | +lerna-debug.log* | ||
| 48 | +.pnpm-debug.log* | ||
| 49 | + | ||
| 50 | +# Next.js | ||
| 51 | +.next/ | ||
| 52 | +out/ | ||
| 53 | +build/ | ||
| 54 | +dist/ | ||
| 55 | +*.tsbuildinfo | ||
| 56 | +next-env.d.ts | ||
| 57 | + | ||
| 58 | +# Environment variables | ||
| 59 | +.env | ||
| 60 | +.env.local | ||
| 61 | +.env.development.local | ||
| 62 | +.env.test.local | ||
| 63 | +.env.production.local | ||
| 64 | +.env.*.local | ||
| 65 | + | ||
| 66 | +# IDEs and editors | ||
| 67 | +.vscode/ | ||
| 68 | +.idea/ | ||
| 69 | +*.swp | ||
| 70 | +*.swo | ||
| 71 | +*~ | ||
| 72 | +.project | ||
| 73 | +.metadata | ||
| 74 | +.buildpath | ||
| 75 | +.settings/ | ||
| 76 | +*.sublime-workspace | ||
| 77 | +*.sublime-project | ||
| 78 | + | ||
| 79 | +# OS generated files | ||
| 80 | +.DS_Store | ||
| 81 | +.DS_Store? | ||
| 82 | +._* | ||
| 83 | +.Spotlight-V100 | ||
| 84 | +.Trashes | ||
| 85 | +ehthumbs.db | ||
| 86 | +Thumbs.db | ||
| 87 | +Desktop.ini | ||
| 88 | + | ||
| 89 | +# Logs | ||
| 90 | +logs/ | ||
| 91 | +*.log | ||
| 92 | +npm-debug.log* | ||
| 93 | +yarn-debug.log* | ||
| 94 | +yarn-error.log* | ||
| 95 | +lerna-debug.log* | ||
| 96 | + | ||
| 97 | +# Runtime data | ||
| 98 | +pids/ | ||
| 99 | +*.pid | ||
| 100 | +*.seed | ||
| 101 | +*.pid.lock | ||
| 102 | + | ||
| 103 | +# Coverage directory used by tools like istanbul | ||
| 104 | +coverage/ | ||
| 105 | +*.lcov | ||
| 106 | + | ||
| 107 | +# nyc test coverage | ||
| 108 | +.nyc_output/ | ||
| 109 | + | ||
| 110 | +# Dependency directories | ||
| 111 | +jspm_packages/ | ||
| 112 | + | ||
| 113 | +# TypeScript cache | ||
| 114 | +*.tsbuildinfo | ||
| 115 | + | ||
| 116 | +# Optional npm cache directory | ||
| 117 | +.npm | ||
| 118 | + | ||
| 119 | +# Optional eslint cache | ||
| 120 | +.eslintcache | ||
| 121 | + | ||
| 122 | +# Microbundle cache | ||
| 123 | +.rpt2_cache/ | ||
| 124 | +.rts2_cache_cjs/ | ||
| 125 | +.rts2_cache_es/ | ||
| 126 | +.rts2_cache_umd/ | ||
| 127 | + | ||
| 128 | +# Optional REPL history | ||
| 129 | +.node_repl_history | ||
| 130 | + | ||
| 131 | +# Output of 'npm pack' | ||
| 132 | +*.tgz | ||
| 133 | + | ||
| 134 | +# Yarn Integrity file | ||
| 135 | +.yarn-integrity | ||
| 136 | + | ||
| 137 | +# parcel-bundler cache (https://parceljs.org/) | ||
| 138 | +.cache | ||
| 139 | +.parcel-cache | ||
| 140 | + | ||
| 141 | +# Next.js build output | ||
| 142 | +.next | ||
| 143 | + | ||
| 144 | +# Nuxt.js build / generate output | ||
| 145 | +.nuxt | ||
| 146 | +dist | ||
| 147 | + | ||
| 148 | +# Storybook build outputs | ||
| 149 | +.out | ||
| 150 | +.storybook-out | ||
| 151 | + | ||
| 152 | +# Temporary folders | ||
| 153 | +tmp/ | ||
| 154 | +temp/ | ||
| 155 | + | ||
| 156 | +# Editor directories and files | ||
| 157 | +.vscode/* | ||
| 158 | +!.vscode/extensions.json | ||
| 159 | +.idea | ||
| 160 | +*.suo | ||
| 161 | +*.ntvs* | ||
| 162 | +*.njsproj | ||
| 163 | +*.sln | ||
| 164 | +*.sw? | ||
| 165 | + | ||
| 166 | +# Local Netlify folder | ||
| 167 | +.netlify | ||
| 168 | + | ||
| 169 | +# Vercel | ||
| 170 | +.vercel | ||
| 171 | + | ||
| 172 | +# Stores VSCode versions used for testing VSCode extensions | ||
| 173 | +.vscode-test | ||
| 174 | + | ||
| 175 | +# Serverless directories | ||
| 176 | +.serverless/ | ||
| 177 | + | ||
| 178 | +# FuseBox cache | ||
| 179 | +.fusebox/ | ||
| 180 | + | ||
| 181 | +# DynamoDB Local files | ||
| 182 | +.dynamodb/ | ||
| 183 | + | ||
| 184 | +# TernJS port file | ||
| 185 | +.tern-port | ||
| 186 | + | ||
| 187 | +# Stores VSCode versions used for testing VSCode extensions | ||
| 188 | +.vscode-test/ | ||
| 189 | + | ||
| 190 | +# yarn v2 | ||
| 191 | +.yarn/cache | ||
| 192 | +.yarn/unplugged | ||
| 193 | +.yarn/build-state.yml | ||
| 194 | +.yarn/install-state.gz | ||
| 195 | +.pnp.* | ||
.tool-versionsadded@@ -0,0 +1,1 @@ | |||
| 1 | +nodejs 23.11.0 | ||
README.mdadded@@ -0,0 +1,1 @@ | |||
| 1 | +# echoed | ||