-
Notifications
You must be signed in to change notification settings - Fork 0
/
.arkana.yml
15 lines (15 loc) · 1.26 KB
/
.arkana.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import_name: 'ArkanaKeys' # Optional. Name of the framework to be imported. Defaults to ArkanaKeys.
namespace: 'Keys' # Optional. Namespace used to access the secrets in the codebase. Defaults to ArkanaKeys.
result_path: # Optional. Destination path of the generated code, related to the path of this config file. Defaults to ArkanaKeys.
flavors: # Optional. Flavors are keywords added as a prefix to every secret when reading them from environment variables. This is useful for instance in white-label projects. Check the "Usage" section of the README for more information.
swift_declaration_strategy: let # Optional. One of: lazy var, var, let. Defaults to let.
should_generate_unit_tests: true # Optional. One of: true, false. Defaults to true.
package_manager: spm # Optional. One of: spm, cocoapods. If you use both, declare cocoapods. Defaults to spm.
environments: # Optional. List of environments that will be used to generate secret keys when you have keys that are different between environments (e.g. debug/staging/prod). Defaults to empty.
- Debug
- Release
global_secrets: # Optional. List of secrets that are the same regardless of which environment is being built. Defaults to empty.
- FoursquareClientID
- FoursquareClientSecret
environment_secrets:
- FoursquareAPIKey