mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-03 14:28:14 -05:00
10 lines
220 B
Bash
10 lines
220 B
Bash
#!/bin/sh
|
|
|
|
# Apply database migrations using the bundle
|
|
echo "Running database migrations..."
|
|
/app/AliasVault/migrationbundle
|
|
|
|
# Start the application
|
|
echo "Starting application..."
|
|
dotnet /app/AliasVault/AliasVault.dll
|