Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 53 additions & 53 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@

# IDE and various other developer tools
.vscode
.idea
.ipynb_checkpoints
*.swp

# python
.venv/
.pytest_cache/
*.pyc
.coverage
__pycache__/

# Misc
!.gitkeep
*.orig
*.squashfs
*.retry

# node
node_modules/


# Packaging
build/
dist/
utils/


# certs/keys/pems
*.crt
*.csr
*.key
*.pem
*.pfx
*.srl*
*.csr.cfg
*id_rsa*


# Big binaries
*.bz2
*.gz
*.jar
*.tar.gz
*.tgz
*.zip
*.vix

# tests
reports/

# IDE and various other developer tools
.vscode
.idea
.ipynb_checkpoints
*.swp
# python
.venv/
.pytest_cache/
*.pyc
.coverage
__pycache__/
# Misc
!.gitkeep
*.orig
*.squashfs
*.retry
# node
node_modules/
# Packaging
build/
dist/
utils/
# certs/keys/pems
*.crt
*.csr
*.key
*.pem
*.pfx
*.srl*
*.csr.cfg
*id_rsa*
# Big binaries
*.bz2
*.gz
*.jar
*.tar.gz
*.tgz
*.zip
*.vix
# tests
reports/
s3CacheTask/.taskkey
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8.2
3.9.5
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ install-poetry:
poetry install

up:
poetry run docker-compose up -d localstack && poetry run docker-compose-wait --wait
poetry run docker compose up -d localstack

down:
poetry run docker-compose down
poetry run docker compose down

test: up
make -C s3CacheTask test
Expand Down
Loading
Loading