Add build files

This commit is contained in:
Aymeric 2024-12-27 16:42:17 +01:00
parent 77a4cce196
commit 9b172e900f
4 changed files with 2727 additions and 13 deletions

14
.gitignore vendored
View File

@ -64,24 +64,12 @@ coverage.xml
.hypothesis/
.pytest_cache/
cover/
uv.lock
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/

13
.pre-commit-config.yaml Normal file
View File

@ -0,0 +1,13 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.1
hooks:
- id: ruff
args:
- --fix
- id: ruff-format
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-merge-conflict
- id: check-yaml

2708
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

5
package.json Normal file
View File

@ -0,0 +1,5 @@
{
"dependencies": {
"@e2b/cli": "^1.0.9"
}
}