-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make controller configable with file
- Loading branch information
Showing
14 changed files
with
168 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
logLevel: debug | ||
server: | ||
httpPort: 10264 | ||
agentPort: 10263 | ||
controller: | ||
database: | ||
type: sqlite3 | ||
diagnose: {} | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
create table if not exists tasks | ||
create table if not exists `tasks` | ||
( | ||
id integer primary key autoincrement, | ||
config text not null, | ||
start_time timestamp default now(), | ||
finish_time timestamp default null, | ||
status varchar(16) not null, | ||
result text default null, | ||
message varchar(4096) | ||
); | ||
`id` integer AUTO_INCREMENT, | ||
`config` text not null, | ||
`start_time` timestamp default now(), | ||
`finish_time` timestamp null default null, | ||
`status` varchar(16) not null, | ||
`result` text default null, | ||
`message` varchar(4096), | ||
PRIMARY KEY(`id`) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
create table if not exists tasks | ||
create table if not exists `tasks` | ||
( | ||
id integer primary key autoincrement, | ||
config text not null, | ||
start_time timestamp default current_timestamp, | ||
finish_time timestamp default null, | ||
status varchar(16) not null, | ||
result text default null, | ||
message varchar(4096) | ||
`id` integer primary key autoincrement, | ||
`config` text not null, | ||
`start_time` timestamp default current_timestamp, | ||
`finish_time` timestamp default null, | ||
`status` varchar(16) not null, | ||
`result` text default null, | ||
`message` varchar(4096) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.