-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix warning for broken link * Add output to docker and fly.io deploy commands * Update cookiecutter generated files * Make output collapsible
- Loading branch information
1 parent
a46ee63
commit 6ca0bc5
Showing
14 changed files
with
203 additions
and
4 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
Empty file.
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
4 changes: 3 additions & 1 deletion
4
docs/docs_src/getting_started/fastapi/my_fastagency_app/scripts/build_docker.sh
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,5 @@ | ||
#!/bin/bash | ||
|
||
docker build -t deploy_fastagency -f docker/Dockerfile --progress plain . | ||
echo -e "\033[0;32mBuilding fastagency docker image\033[0m" | ||
docker build -t deploy_fastagency -f docker/Dockerfile --progress plain . && \ | ||
echo -e "\033[0;32mSuccessfully built fastagency docker image\033[0m" |
3 changes: 3 additions & 0 deletions
3
docs/docs_src/getting_started/fastapi/my_fastagency_app/scripts/deploy_to_fly_io.sh
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,7 +1,10 @@ | ||
#!/bin/bash | ||
|
||
echo -e "\033[0;32mLogging into fly.io\033[0m" | ||
fly auth login | ||
|
||
echo -e "\033[0;32mDeploying to fly.io\033[0m" | ||
fly launch --config fly.toml --copy-config --yes | ||
|
||
echo -e "\033[0;32mSetting secrets\033[0m" | ||
fly secrets set OPENAI_API_KEY=$OPENAI_API_KEY |
Empty file.
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
4 changes: 3 additions & 1 deletion
4
docs/docs_src/getting_started/mesop/my_fastagency_app/scripts/build_docker.sh
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,5 @@ | ||
#!/bin/bash | ||
|
||
docker build -t deploy_fastagency -f docker/Dockerfile --progress plain . | ||
echo -e "\033[0;32mBuilding fastagency docker image\033[0m" | ||
docker build -t deploy_fastagency -f docker/Dockerfile --progress plain . && \ | ||
echo -e "\033[0;32mSuccessfully built fastagency docker image\033[0m" |
3 changes: 3 additions & 0 deletions
3
docs/docs_src/getting_started/mesop/my_fastagency_app/scripts/deploy_to_fly_io.sh
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,7 +1,10 @@ | ||
#!/bin/bash | ||
|
||
echo -e "\033[0;32mLogging into fly.io\033[0m" | ||
fly auth login | ||
|
||
echo -e "\033[0;32mDeploying to fly.io\033[0m" | ||
fly launch --config fly.toml --copy-config --yes | ||
|
||
echo -e "\033[0;32mSetting secrets\033[0m" | ||
fly secrets set OPENAI_API_KEY=$OPENAI_API_KEY |
Empty file.
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
4 changes: 3 additions & 1 deletion
4
docs/docs_src/getting_started/nats_n_fastapi/my_fastagency_app/scripts/build_docker.sh
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,5 @@ | ||
#!/bin/bash | ||
|
||
docker build -t deploy_fastagency -f docker/Dockerfile --progress plain . | ||
echo -e "\033[0;32mBuilding fastagency docker image\033[0m" | ||
docker build -t deploy_fastagency -f docker/Dockerfile --progress plain . && \ | ||
echo -e "\033[0;32mSuccessfully built fastagency docker image\033[0m" |
3 changes: 3 additions & 0 deletions
3
docs/docs_src/getting_started/nats_n_fastapi/my_fastagency_app/scripts/deploy_to_fly_io.sh
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,7 +1,10 @@ | ||
#!/bin/bash | ||
|
||
echo -e "\033[0;32mLogging into fly.io\033[0m" | ||
fly auth login | ||
|
||
echo -e "\033[0;32mDeploying to fly.io\033[0m" | ||
fly launch --config fly.toml --copy-config --yes | ||
|
||
echo -e "\033[0;32mSetting secrets\033[0m" | ||
fly secrets set OPENAI_API_KEY=$OPENAI_API_KEY |