可保存视频到相册,生成无水印链接
git拉取代码
git clone https://github.com/samxxxxx/dyapi.git
-
修改DYApi项目下的
appsettings.Development.json
文件中ConnectionStrings:Default
Mysql数据库链接服务器地址、用户名、密码,默认链接为:server=127.0.0.1;port=3306;database=dydb;uid=root;password=.
-
修改
Serilog
配置,connectionString
修改实际的用户账户信息。
"Serilog": {
"Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.MySQL" ],
"MinimumLevel": "Information",
"WriteTo": [
{ "Name": "Console" },
{
"Name": "MySQL",
"Args": {
"connectionString": "server=127.0.0.1;port=3306;database=dydb;uid=root;password=.;CharSet=utf8mb4",
"tableName": "logging",
"storeTimestampInUtc": true
}
}
]
},
数据库迁移
cd dyapi/src/DYApi.EntityframeworkCore/
dotnet ef database update
完成,运行项目