Skip to content

Commit d509ff4

Browse files
authored
Merge pull request #5 from quiknode-labs/fix-docker-build
Fix docker build
2 parents 367da3e + fce9ac7 commit d509ff4

3 files changed

Lines changed: 1654 additions & 1 deletion

File tree

.gitignore

Lines changed: 363 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,366 @@ node_modules
22
.env
33
dist
44
data
5-
.vscode
5+
.vscode
6+
7+
# Byte-compiled / optimized / DLL files
8+
__pycache__/
9+
*.py[codz]
10+
*$py.class
11+
12+
# C extensions
13+
*.so
14+
15+
# Distribution / packaging
16+
.Python
17+
build/
18+
develop-eggs/
19+
dist/
20+
downloads/
21+
eggs/
22+
.eggs/
23+
lib/
24+
lib64/
25+
parts/
26+
sdist/
27+
var/
28+
wheels/
29+
share/python-wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
MANIFEST
34+
35+
# PyInstaller
36+
# Usually these files are written by a python script from a template
37+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
38+
*.manifest
39+
*.spec
40+
41+
# Installer logs
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
45+
# Unit test / coverage reports
46+
htmlcov/
47+
.tox/
48+
.nox/
49+
.coverage
50+
.coverage.*
51+
.cache
52+
nosetests.xml
53+
coverage.xml
54+
*.cover
55+
*.py.cover
56+
.hypothesis/
57+
.pytest_cache/
58+
cover/
59+
60+
# Translations
61+
*.mo
62+
*.pot
63+
64+
# Django stuff:
65+
*.log
66+
local_settings.py
67+
db.sqlite3
68+
db.sqlite3-journal
69+
70+
# Flask stuff:
71+
instance/
72+
.webassets-cache
73+
74+
# Scrapy stuff:
75+
.scrapy
76+
77+
# Sphinx documentation
78+
docs/_build/
79+
80+
# PyBuilder
81+
.pybuilder/
82+
target/
83+
84+
# Jupyter Notebook
85+
.ipynb_checkpoints
86+
87+
# IPython
88+
profile_default/
89+
ipython_config.py
90+
91+
# pyenv
92+
# For a library or package, you might want to ignore these files since the code is
93+
# intended to run in multiple environments; otherwise, check them in:
94+
# .python-version
95+
96+
# pipenv
97+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
98+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
99+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
100+
# install all needed dependencies.
101+
# Pipfile.lock
102+
103+
# UV
104+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
105+
# This is especially recommended for binary packages to ensure reproducibility, and is more
106+
# commonly ignored for libraries.
107+
# uv.lock
108+
109+
# poetry
110+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
111+
# This is especially recommended for binary packages to ensure reproducibility, and is more
112+
# commonly ignored for libraries.
113+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
114+
# poetry.lock
115+
# poetry.toml
116+
117+
# pdm
118+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
119+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
120+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
121+
# pdm.lock
122+
# pdm.toml
123+
.pdm-python
124+
.pdm-build/
125+
126+
# pixi
127+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
128+
# pixi.lock
129+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
130+
# in the .venv directory. It is recommended not to include this directory in version control.
131+
.pixi
132+
133+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
134+
__pypackages__/
135+
136+
# Celery stuff
137+
celerybeat-schedule
138+
celerybeat.pid
139+
140+
# Redis
141+
*.rdb
142+
*.aof
143+
*.pid
144+
145+
# RabbitMQ
146+
mnesia/
147+
rabbitmq/
148+
rabbitmq-data/
149+
150+
# ActiveMQ
151+
activemq-data/
152+
153+
# SageMath parsed files
154+
*.sage.py
155+
156+
# Environments
157+
.env
158+
.envrc
159+
.venv
160+
env/
161+
venv/
162+
ENV/
163+
env.bak/
164+
venv.bak/
165+
166+
# Spyder project settings
167+
.spyderproject
168+
.spyproject
169+
170+
# Rope project settings
171+
.ropeproject
172+
173+
# mkdocs documentation
174+
/site
175+
176+
# mypy
177+
.mypy_cache/
178+
.dmypy.json
179+
dmypy.json
180+
181+
# Pyre type checker
182+
.pyre/
183+
184+
# pytype static type analyzer
185+
.pytype/
186+
187+
# Cython debug symbols
188+
cython_debug/
189+
190+
# PyCharm
191+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
192+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
193+
# and can be added to the global gitignore or merged into this file. For a more nuclear
194+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
195+
# .idea/
196+
197+
# Abstra
198+
# Abstra is an AI-powered process automation framework.
199+
# Ignore directories containing user credentials, local state, and settings.
200+
# Learn more at https://abstra.io/docs
201+
.abstra/
202+
203+
# Visual Studio Code
204+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
205+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
206+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
207+
# you could uncomment the following to ignore the entire vscode folder
208+
# .vscode/
209+
210+
# Ruff stuff:
211+
.ruff_cache/
212+
213+
# PyPI configuration file
214+
.pypirc
215+
216+
# Marimo
217+
marimo/_static/
218+
marimo/_lsp/
219+
__marimo__/
220+
221+
# Streamlit
222+
.streamlit/secrets.toml
223+
224+
225+
# Logs
226+
logs
227+
*.log
228+
npm-debug.log*
229+
yarn-debug.log*
230+
yarn-error.log*
231+
lerna-debug.log*
232+
233+
# Diagnostic reports (https://nodejs.org/api/report.html)
234+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
235+
236+
# Runtime data
237+
pids
238+
*.pid
239+
*.seed
240+
*.pid.lock
241+
242+
# Directory for instrumented libs generated by jscoverage/JSCover
243+
lib-cov
244+
245+
# Coverage directory used by tools like istanbul
246+
coverage
247+
*.lcov
248+
249+
# nyc test coverage
250+
.nyc_output
251+
252+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
253+
.grunt
254+
255+
# Bower dependency directory (https://bower.io/)
256+
bower_components
257+
258+
# node-waf configuration
259+
.lock-wscript
260+
261+
# Compiled binary addons (https://nodejs.org/api/addons.html)
262+
build/Release
263+
264+
# Dependency directories
265+
node_modules/
266+
jspm_packages/
267+
268+
# Snowpack dependency directory (https://snowpack.dev/)
269+
web_modules/
270+
271+
# TypeScript cache
272+
*.tsbuildinfo
273+
274+
# Optional npm cache directory
275+
.npm
276+
277+
# Optional eslint cache
278+
.eslintcache
279+
280+
# Optional stylelint cache
281+
.stylelintcache
282+
283+
# Optional REPL history
284+
.node_repl_history
285+
286+
# Output of 'npm pack'
287+
*.tgz
288+
289+
# Yarn Integrity file
290+
.yarn-integrity
291+
292+
# dotenv environment variable files
293+
.env
294+
.env.*
295+
!.env.example
296+
297+
# parcel-bundler cache (https://parceljs.org/)
298+
.cache
299+
.parcel-cache
300+
301+
# Next.js build output
302+
.next
303+
out
304+
305+
# Nuxt.js build / generate output
306+
.nuxt
307+
dist
308+
.output
309+
310+
# Gatsby files
311+
.cache/
312+
# Comment in the public line in if your project uses Gatsby and not Next.js
313+
# https://nextjs.org/blog/next-9-1#public-directory-support
314+
# public
315+
316+
# vuepress build output
317+
.vuepress/dist
318+
319+
# vuepress v2.x temp and cache directory
320+
.temp
321+
.cache
322+
323+
# Sveltekit cache directory
324+
.svelte-kit/
325+
326+
# vitepress build output
327+
**/.vitepress/dist
328+
329+
# vitepress cache directory
330+
**/.vitepress/cache
331+
332+
# Docusaurus cache and generated files
333+
.docusaurus
334+
335+
# Serverless directories
336+
.serverless/
337+
338+
# FuseBox cache
339+
.fusebox/
340+
341+
# DynamoDB Local files
342+
.dynamodb/
343+
344+
# Firebase cache directory
345+
.firebase/
346+
347+
# TernJS port file
348+
.tern-port
349+
350+
# Stores VSCode versions used for testing VSCode extensions
351+
.vscode-test
352+
353+
# yarn v3
354+
.pnp.*
355+
.yarn/*
356+
!.yarn/patches
357+
!.yarn/plugins
358+
!.yarn/releases
359+
!.yarn/sdks
360+
!.yarn/versions
361+
362+
# Vite files
363+
vite.config.js.timestamp-*
364+
vite.config.ts.timestamp-*
365+
.vite/
366+
367+
.idea

0 commit comments

Comments
 (0)