-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Ping Purger Integration, Dockerization, SNMP, UI Enhancements…
…, and Kubernetes Support"
- Loading branch information
Showing
184 changed files
with
24,307 additions
and
18,467 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
*.pyc | ||
*.pyc.* | ||
.env | ||
.coverage | ||
cov.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"command": "npm start", | ||
"name": "Launch web app", | ||
"request": "launch", | ||
"cwd": "${workspaceFolder}/webapp", | ||
"type": "node-terminal" | ||
}, | ||
{ | ||
"name": "Python: Flask", | ||
"type": "python", | ||
"request": "launch", | ||
"stopOnEntry": false, | ||
"program": "${workspaceRoot}/services/api/src/main.py", | ||
"env": { | ||
"FLASK_APP": "${workspaceRoot}/services/api/src/main.py" | ||
}, | ||
"args": ["run"], | ||
"envFile": "${workspaceRoot}/services/api/.env", | ||
"preLaunchTask": "build-python-services" | ||
} | ||
] | ||
} | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"command": "npm start", | ||
"name": "Launch web app", | ||
"request": "launch", | ||
"cwd": "${workspaceFolder}/webapp", | ||
"type": "node-terminal" | ||
}, | ||
{ | ||
"name": "Python: Flask", | ||
"type": "python", | ||
"request": "launch", | ||
"stopOnEntry": false, | ||
"program": "${workspaceRoot}/api/src/main.py", | ||
"env": { | ||
"FLASK_APP": "${workspaceRoot}/api/src/main.py" | ||
}, | ||
"args": ["run"], | ||
"envFile": "${workspaceRoot}/api/.env", | ||
"preLaunchTask": "build-python-api" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM python:3-slim | ||
|
||
WORKDIR /home | ||
|
||
ADD requirements.txt . | ||
|
||
RUN pip3 install -r requirements.txt | ||
|
||
ADD bsm_query.py . | ||
|
||
CMD ["/home/bsm_query.py"] | ||
ENTRYPOINT ["python3"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
DateTime==5.1 | ||
pymongo==4.3.3 | ||
python-dateutil==2.8.2 | ||
pytest-cov==4.0.0 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM python:3-slim | ||
|
||
WORKDIR /home | ||
|
||
ADD requirements.txt . | ||
|
||
RUN pip3 install -r requirements.txt | ||
|
||
ADD driver.py . | ||
ADD kafka_counter.py . | ||
ADD pgquery_rsu.py . | ||
|
||
CMD ["/home/driver.py"] | ||
ENTRYPOINT ["python3"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.