mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2024-11-29 18:49:08 +08:00
3a78332918
* chore: 移除打包文件 * chore: 更新忽略文件 * chore: 更新脚本 * chore: 更新脚本描述文本 * Revert "chore: 移除打包文件" This reverts commit 6099e91265ad994d5bab324ce772e952831301ba. * Revert "chore: 更新忽略文件" This reverts commit 405b966ff1a9e9ccb874b907cd591c1e730e8a0c. * Revert "chore: 更新脚本" This reverts commit 7f93f21202b2dea8884a67ac025814aad9bd267a. * chore: 更新 sasscompiler 配置文件 * Revert "chore: 更新 sasscompiler 配置文件" This reverts commit a2342e03ef77b10e054149cbc24be454abd4c170. * chore: 更新 sasscompiler 配置文件 (cherry picked from commit a2342e03ef77b10e054149cbc24be454abd4c170) * refactor: 修改 sasscompiler 配置 * refactor: 修改 bundle 配置 * chore: 移除 WebCompiler 工具 * chore: 删除生成文件 * chore: 删除生成文件 * chore: 删除中间文件 * chore: 更新目标文件夹 * chore: 更新包依赖关系 * chore: 忽略强命名警告 * chore: 更新忽略文件 * chore: 更新打包文件 * chore: 更新工具链配置 * chore: 移除样式打包文件 * chore: 更新忽略文件 --------- Co-authored-by: zhangpeihang <948869991@qq.com>
18 lines
385 B
Desktop File
18 lines
385 B
Desktop File
# /usr/lib/systemd/system/
|
|
|
|
[Unit]
|
|
Description=Bootstrap Blazor Application
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/usr/local/ba/blazor
|
|
Environment=ASPNETCORE_ENVIRONMENT=Production
|
|
ExecStart=/usr/bin/dotnet BootstrapBlazor.Server.dll --urls http://localhost:50853
|
|
ExecStop=/bin/kill -2 $MAINPID
|
|
KillMode=process
|
|
Restart=on-failure
|
|
RestartSec=1s
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|