All Projects → 246850 → Calamus.TaskScheduler

246850 / Calamus.TaskScheduler

Licence: other
基于Asp.Net Core 5.0采用Quartz.Net编写的开源任务调度Web管理平台

Programming Languages

C#
18002 projects
HTML
75241 projects
TSQL
950 projects

Projects that are alternatives of or similar to Calamus.TaskScheduler

WeekToDoWeb
WeekToDo is a free minimalist weekly planner app focused on privacy. Schedule your tasks and projects with to do lists and a calendar. Available for Windows, Mac, Linux or online.
Stars: ✭ 48 (-26.15%)
Mutual labels:  taskscheduler
concore
Core abstractions for dealing with concurrency in C++
Stars: ✭ 57 (-12.31%)
Mutual labels:  taskscheduler

Calamus.TaskScheduler

基于Asp.Net Core 5.0采用Quartz.Net编写的开源任务调度Web管理平台

部署步骤

1、创建持久化数据库(以MySQL为例)

--创建数据库 quartz , Charset为utf8mb4

--根据database/tables/tables_mysql_innodb.sql语句创建表结构

2、启动方式

--docker部署(推荐)

--命令行启动 dotnet Calamus.TaskScheduler.dll

--IIS部署(不推荐)

配置文件

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  },
  "AllowedHosts": "*",
  "Quartz": {
    "Database": "server=localhost;port=3306;database=quartz;User ID=root;Password=123456", // quartz 持久化数据库连接,本实例使用MySQL
    "TablePrefix": "QRTZ_"  // MySQL下注意区分大小写
  }
}

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].