mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
b61b1eadaf
* Optionally Run `docker-compose` * Use Traversal Projects Over Solution Files * Cleanup VSCode Tasks * Bind DataProtection Keys to Host - Makes it so the container can be rebuilt without corrupting data * Update .vscode/tasks.json Co-authored-by: Matt Bishop <mbishop@bitwarden.com> --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
31 lines
711 B
PowerShell
31 lines
711 B
PowerShell
#!/usr/bin/env pwsh
|
|
param (
|
|
[Parameter(Mandatory)]
|
|
$Name
|
|
)
|
|
|
|
# DB service provider name
|
|
$service = "mysql"
|
|
|
|
Write-Output "--- Attempting to start $service service ---"
|
|
|
|
# Attempt to start mysql but if docker-compose doesn't
|
|
# exist just trust that the user has it running some other way
|
|
if (command -v docker-compose) {
|
|
docker-compose --profile $service up -d --no-recreate
|
|
}
|
|
|
|
dotnet tool restore
|
|
|
|
$providers = @{
|
|
MySql = "../util/MySqlMigrations"
|
|
Postgres = "../util/PostgresMigrations"
|
|
Sqlite = "../util/SqliteMigrations"
|
|
}
|
|
|
|
foreach ($key in $providers.keys) {
|
|
Write-Output "--- START $key ---"
|
|
dotnet ef migrations add $Name -s $providers[$key]
|
|
Write-Output "--- END $key ---"
|
|
}
|