-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de2101b
commit 12b410a
Showing
6 changed files
with
45 additions
and
18 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 |
---|---|---|
@@ -1 +1,5 @@ | ||
docker buildx build --platform linux/amd64 -t us-east4-docker.pkg.dev/weave-support-367421/weave-images/weave-test:latest . -f Dockerfile.test | ||
docker buildx build \ | ||
--platform linux/amd64 \ | ||
-t us-east4-docker.pkg.dev/weave-support-367421/weave-images/weave-test:latest \ | ||
-f Dockerfile.test \ | ||
. |
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,10 @@ | ||
#!/bin/sh | ||
|
||
WEAVE_SERVER_DEBUG=true \ | ||
DD_SERVICE="weave-python" DD_ENV="dev-$(whoami)" DD_LOGS_INJECTION=true \ | ||
WEAVE_SERVER_ENABLE_LOGGING=true FLASK_APP=weave.weave_server ddtrace-run flask run --port 9994 | ||
WEAVE_SERVER_DEBUG=true | ||
DD_SERVICE="weave-python" | ||
DD_ENV="dev-$(whoami)" | ||
DD_LOGS_INJECTION=true | ||
WEAVE_SERVER_ENABLE_LOGGING=true | ||
FLASK_APP=weave.weave_server | ||
|
||
ddtrace-run flask run --port 9994 |
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,3 +1,7 @@ | ||
#!/bin/sh | ||
|
||
WEAVE_SERVER_DEBUG=true WEAVE_SERVER_ENABLE_LOGGING=true FLASK_APP=weave.weave_server flask run --port 9994 | ||
export WEAVE_SERVER_DEBUG=true | ||
export WEAVE_SERVER_ENABLE_LOGGING=true | ||
export FLASK_APP=weave.weave_server | ||
|
||
flask run --port 9994 |
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,3 +1,10 @@ | ||
#!/bin/sh | ||
|
||
WEAVE_CI=true WEAVE_DISABLE_ANALYTICS=true WEAVE_SERVER_DEBUG=true WEAVE_SERVER_ENABLE_LOGGING=true WEAVE_WANDB_GQL_NUM_TIMEOUT_RETRIES=1 FLASK_APP=weave.weave_server flask run --port 9994 $@ | ||
export WEAVE_CI=true | ||
export WEAVE_DISABLE_ANALYTICS=true | ||
export WEAVE_SERVER_DEBUG=true | ||
export WEAVE_SERVER_ENABLE_LOGGING=true | ||
export WEAVE_WANDB_GQL_NUM_TIMEOUT_RETRIES=1 | ||
export FLASK_APP=weave.weave_server | ||
|
||
flask run --port 9994 "$@" |