-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/victoria-metrics
- Loading branch information
Showing
25 changed files
with
388 additions
and
120 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ __pycache__ | |
.gitignore | ||
Dockerfile | ||
*.md | ||
*.txt | ||
.vscode | ||
|
||
# Exclude logs and cache | ||
|
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
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,20 @@ | ||
# Remove old build | ||
rm -rf build | ||
rm -rf dist | ||
|
||
# MacOS Build first | ||
|
||
# Active venv | ||
# python -m pip install -r requirements.txt | ||
pip install pyinstaller | ||
apt-get install binutils | ||
|
||
# source .venv/bin/activate | ||
|
||
# Build | ||
pyinstaller krr.py | ||
cd dist | ||
# zip -r "krr-linux-v1.1.0.zip" krr | ||
|
||
# Deactivate venv | ||
# deactivate |
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,13 @@ | ||
# Remove old build | ||
rm -rf build | ||
rm -rf dist | ||
|
||
# Active venv | ||
source .venv/bin/activate | ||
pip install -r requirements.txt | ||
pip install pyinstaller | ||
|
||
# Build | ||
pyinstaller krr.py | ||
cd dist | ||
zip -r "krr-macos-v1.1.0.zip" krr |
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,6 @@ | ||
docker buildx build \ | ||
--build-arg BUILDKIT_INLINE_CACHE=1 \ | ||
--platform linux/arm64,linux/amd64 \ | ||
--tag us-central1-docker.pkg.dev/genuine-flight-317411/devel/krr:${TAG} \ | ||
--push \ | ||
. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,4 +1,4 @@ | ||
from .main import run | ||
|
||
__version__ = "1.0.0" | ||
__version__ = "1.1.1" | ||
__all__ = ["run", "__version__"] |
Oops, something went wrong.