-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add readme to artiaa_auth and bump foreman version (#96)
This PR looks to add readme to artiaa_auth so we can publish it as an individual crate for Foreman to depend on
- Loading branch information
1 parent
70b2cc9
commit 8728d59
Showing
4 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ default-members = [".", "artiaa_auth"] | |
[package] | ||
name = "foreman" | ||
description = "Toolchain manager for simple binary tools" | ||
version = "1.6.2" | ||
version = "1.6.3" | ||
authors = [ | ||
"Lucien Greathouse <[email protected]>", | ||
"Matt Hargett <[email protected]>", | ||
|
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,35 @@ | ||
# artiaa_auth | ||
Reads artifactory authentication using the following schema: | ||
|
||
``` | ||
{ | ||
"$schema": "https://json-schema.org/draft/2019-09/schema", | ||
"type": "object", | ||
"title": "ArtiAA Token File Format", | ||
"description": "This is the format of the ArtiAA Token File, a standard output that contains the Artifactory tokens for the user. ", | ||
"properties": { | ||
"tokens": { | ||
"title": "Tokens URL Map", | ||
"description": "Map of URLs and the credentials that apply to them.\nThe key of each value is the base domain URL the credential applies to, such as 'artifactory.rbx.com'.\nArtiAA will add an entry for each URL it has been logged into.", | ||
"type": "object", | ||
"additionalProperties": { | ||
"title": "URL Token Element", | ||
"type": "object", | ||
"properties": { | ||
"username": { | ||
"title": "Username", | ||
"description": "The username to use for accessing the server, if a username is necessary.\nMay be an empty string.", | ||
"type": "string" | ||
}, | ||
"token": { | ||
"title": "Token", | ||
"description": "The token to use for accessing the server.", | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
} | ||
} | ||
``` |
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