-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from vkamiansky/vi-config-file
7 - Storing settings in the config file
- Loading branch information
Showing
7 changed files
with
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DataSourceConfigs/*.json |
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,6 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" /> | ||
</startup> | ||
<appSettings> | ||
<add key="GithubConfigPath" value="..\..\DataSourceConfigs\github_config.json" /> | ||
</appSettings> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" /> | ||
</startup> | ||
</configuration> |
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
5 changes: 5 additions & 0 deletions
5
code/FsComposite/Composite.Test/DataSourceConfigs/github_config.template
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,5 @@ | ||
{ | ||
"user": "[username]", | ||
"password": "[password]", | ||
"repository": "[name]" | ||
} |
23 changes: 23 additions & 0 deletions
23
code/FsComposite/Composite.Test/DataSourceConfigurationManager.fs
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,23 @@ | ||
namespace Composite.Test | ||
|
||
open System.IO | ||
open System.Configuration | ||
|
||
open Newtonsoft.Json.Linq | ||
|
||
module DataSourceConfigurationManager = | ||
|
||
let getJsonValue (config: JObject) key = | ||
config.SelectToken(sprintf "$.%s" key) |> string | ||
|
||
module Github = | ||
|
||
let config_path = ConfigurationManager.AppSettings.["GithubConfigPath"] | ||
|
||
type Config () = | ||
let config = JObject.Parse(File.ReadAllText(config_path)) | ||
let getJsonValueFromConfig = getJsonValue config | ||
|
||
member this.Username = getJsonValueFromConfig "user" | ||
member this.Password = getJsonValueFromConfig "password" | ||
member this.Repository = getJsonValueFromConfig "repository" |
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,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="ExtCore" version="0.8.46" targetFramework="net47" /> | ||
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net47" /> | ||
<package id="System.ValueTuple" version="4.3.0" targetFramework="net47" /> | ||
</packages> |