1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-12 16:48:12 -05:00

default values

This commit is contained in:
Kyle Spearrin 2017-11-07 11:32:13 -05:00
parent ccf5eec481
commit bf8e5e392d

View File

@ -9,14 +9,14 @@ namespace Bit.Setup
private IDictionary<string, string> _globalValues;
private IDictionary<string, string> _mssqlValues;
public string Url { get; set; }
public string Domain { get; set; }
public string IdentityCertPassword { get; set; }
public string Url { get; set; } = "https://localhost";
public string Domain { get; set; } = "localhost";
public string IdentityCertPassword { get; set; } = "REPLACE";
public Guid? InstallationId { get; set; }
public string InstallationKey { get; set; }
public bool Push { get; set; }
public string DatabasePassword { get; set; }
public string OutputDirectory { get; set; }
public string DatabasePassword { get; set; } = "REPLACE";
public string OutputDirectory { get; set; } = ".";
public void BuildForInstaller()
{