-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add
prefect profiles populate-defaults
CLI command (#14749)
- Loading branch information
Showing
6 changed files
with
148 additions
and
27 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,3 +1,20 @@ | ||
# This is a template for profile configuration for Prefect. | ||
# You can modify these profiles or create new ones to suit their needs. | ||
|
||
active = "default" | ||
|
||
[profiles.default] | ||
[profiles.default] | ||
|
||
[profiles.ephemeral] | ||
PREFECT_API_DATABASE_CONNECTION_URL = "sqlite+aiosqlite:///prefect.db" | ||
|
||
[profiles.local] | ||
# You will need to set these values appropriately | ||
PREFECT_API_URL = "http://127.0.0.1:4200/api" | ||
|
||
|
||
[profiles.cloud] | ||
# This is a placeholder for Prefect Cloud configuration | ||
# Run "prefect cloud login" to set up your Prefect Cloud profile | ||
# PREFECT_API_URL = "https://api.prefect.cloud/api/accounts/[ACCOUNT-ID]/workspaces/[WORKSPACE-ID]" | ||
# PREFECT_API_KEY = "pnu_rest-of-your-api-key-here" |
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
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