- Updated videos.html to enhance readability and maintainability. - Refactored webpack.config.js for better organization and clarity. - Cleaned up TypeScript configuration files (tsconfig.app.json, tsconfig.json, tsconfig.spec.json) for consistency in formatting. - Adjusted docker-compose.yaml for improved formatting and readability.
13 lines
314 B
Bash
13 lines
314 B
Bash
#!/bin/bash
|
|
dacpac="false"
|
|
sqlfiles="false"
|
|
SApassword=$1
|
|
dacpath=$2
|
|
sqlpath=$3
|
|
|
|
cd Api
|
|
dotnet restore ./Api.csproj
|
|
dotnet build ./Api.csproj
|
|
dotnet tool install --global dotnet-ef --version 8.*
|
|
export PATH="$PATH:/root/.dotnet/tools"
|
|
dotnet-ef database update --project ./Api.csproj --startup-project ./Api.csproj |