Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

# macOS system files
.DS_Store
._*
12 changes: 12 additions & 0 deletions .whitesource
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"scanSettings": {
"baseBranches": []
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure",
"displayMode": "diff"
},
"issueSettings": {
"minSeverityLevel": "LOW"
}
}
47 changes: 47 additions & 0 deletions project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "repo-repos-geologonalyzer",
"root": "repos/GeoLogonalyzer",
"projectType": "library",
"targets": {
"status": {
"executor": "nx:run-commands",
"options": {
"command": "git -C repos/GeoLogonalyzer status --short || true"
},
"metadata": {
"supervisorRequired": true
}
},
"fetch": {
"executor": "nx:run-commands",
"options": {
"command": "git -C repos/GeoLogonalyzer fetch --all --prune || true"
},
"metadata": {
"supervisorRequired": true
}
},
"log": {
"executor": "nx:run-commands",
"options": {
"command": "git -C repos/GeoLogonalyzer log --oneline -10 || true"
},
"metadata": {
"supervisorRequired": true
}
},
"manifests": {
"executor": "nx:run-commands",
"options": {
"command": "find repos/GeoLogonalyzer \\( -name package.json -o -name pyproject.toml -o -name Cargo.toml -o -name go.mod -o -name setup.py \\) -not -path '*/node_modules/*' -not -path '*/testdata/*' -not -path '*/fixtures/*' -print | sort"
},
"metadata": {
"supervisorRequired": true
}
}
},
"tags": [
"scope:repos",
"type:subrepo"
]
}
24 changes: 12 additions & 12 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#
# Python dependencies for running on GeoLogonalyzer.py
#
# Usage:
# pip install -r requirements.txt
#
netaddr
python-geoip-python3
win_inet_pton
geopy
geoip2>=2.9.0
importlib-metadata
#
# Python dependencies for running on GeoLogonalyzer.py
#
# Usage:
# pip install -r requirements.txt
#
netaddr==1.3.0
python-geoip-python3==1.3
win_inet_pton==1.1.0
geopy==2.4.1
geoip2>=5.2.0
importlib-metadata==9.0.0