1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

refs and installation complete message

This commit is contained in:
Kyle Spearrin 2018-08-31 09:16:01 -04:00
parent f0ca4450d7
commit 7a6d09a28e
2 changed files with 19 additions and 3 deletions

View File

@ -89,12 +89,25 @@ namespace Bit.Setup
dockerComposeBuilder.BuildForInstaller();
_context.SaveConfiguration();
Console.WriteLine("If you need to make additional configuration changes, you can modify\n" +
Console.WriteLine("\nInstallation complete");
Console.WriteLine("\nIf you need to make additional configuration changes, you can modify\n" +
"the settings in `{0}` and then run {1}",
_context.HostOS == "win" ? ".\\bwdata\\config.yml" : "./bwdata/config.yml",
_context.HostOS == "win" ? "`.\\bitwarden.ps1 -rebuild` or `.\\bitwarden.ps1 -update`" :
"`./bitwarden.sh rebuild` or `./bitwarden.sh update`");
Console.WriteLine("\nNext steps, run:");
if(_context.HostOS == "win")
{
Console.WriteLine("`.\\bitwarden.ps1 -start` and then `.\\bitwarden.ps1 -updatedb`");
}
else
{
Console.WriteLine("`./bitwarden.sh start` and then `./bitwarden.sh updatedb`");
}
Console.WriteLine(string.Empty);
}
private static void Update()

View File

@ -1,5 +1,8 @@
#
# Reference: https://docs.docker.com/compose/compose-file/
# Useful references:
# https://docs.docker.com/compose/compose-file/
# https://docs.docker.com/compose/reference/overview/#use--f-to-specify-name-and-path-of-one-or-more-compose-files
# https://docs.docker.com/compose/reference/envvars/
#
#########################################################################
# WARNING: This file is generated. Do not make changes to this file. #