可保存视频到相册,生成无水印链接
git拉取代码
git clone https://github.com/samxxxxx/dyapi.git
-
修改DYApi项目下的
appsettings.Development.json文件中ConnectionStrings:DefaultMysql数据库链接服务器地址、用户名、密码,默认链接为: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完成,运行项目

