Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
spugachev committed Jul 22, 2024
0 parents commit 079fc17
Show file tree
Hide file tree
Showing 140 changed files with 21,666 additions and 0 deletions.
134 changes: 134 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# macOS specific files
.DS_Store
.AppleDouble
.LSOverride

# macOS Finder attributes
Icon?
._*

# Thumbnails
Thumbs.db
ehthumbs.db

# Files created by macOS's Spotlight
.metadata_never_index
.noindex

# Backup files
*.bak
*.swp
*.swo
*.tmp

# Environments
.env
.venv/
env/
venv/

# Test and coverage results
.coverage
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Virtual environment
.pip/

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
pytestdebug.log

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv/
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# End of macOS specific files
!global.d.ts
!vite-env.d.ts
18 changes: 18 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
],
ignorePatterns: ["dist", ".eslintrc.cjs"],
parser: "@typescript-eslint/parser",
plugins: ["react-refresh"],
rules: {
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true },
],
},
};
Loading

0 comments on commit 079fc17

Please sign in to comment.