Skip to content
Merged
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
4 changes: 4 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
OPENAI_API_KEY = "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"
IMAGE_NAME = "scanner_test:latest"
BASE_PORT = 5000
NUM_INSTANCES = 10
41 changes: 0 additions & 41 deletions .pre-commit-config.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"editor.defaultFormatter": "ms-python.autopep8"
},
"python.formatting.provider": "none"
}
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ RUN apt update && apt upgrade -y
RUN apt install nmap -y
RUN pip install -r requirements.txt

ENTRYPOINT [ "gunicorn", "-w", "4", "-b", "0.0.0.0:443", "--timeout", "2400", "--max-requests", "0", "wsgi:app" ]
ENTRYPOINT [ "gunicorn", "-w", "4", "-b", "0.0.0.0:443", "--timeout", "2400", "--max-requests", "0", "wsgi:app" ]
26 changes: 0 additions & 26 deletions Dockerfile.bak

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
lint:
pre-commit run --all-files --show-diff-on-failure
pre-commit run --all-files --show-diff-on-failure
Loading