mirror of https://github.com/bjc/prosody
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
347 B
27 lines
347 B
|
15 years ago
|
local data_path = "../../data";
|
||
|
|
|
||
|
15 years ago
|
input {
|
||
|
15 years ago
|
type = "prosody_files";
|
||
|
|
path = data_path;
|
||
|
15 years ago
|
}
|
||
|
15 years ago
|
|
||
|
15 years ago
|
output {
|
||
|
15 years ago
|
type = "prosody_sql";
|
||
|
|
driver = "SQLite3";
|
||
|
|
database = data_path.."/prosody.sqlite";
|
||
|
15 years ago
|
}
|
||
|
|
|
||
|
|
--[[
|
||
|
|
|
||
|
|
input {
|
||
|
|
type = "prosody_files";
|
||
|
15 years ago
|
path = data_path;
|
||
|
15 years ago
|
}
|
||
|
|
output {
|
||
|
|
type = "prosody_sql";
|
||
|
|
driver = "SQLite3";
|
||
|
15 years ago
|
database = data_path.."/prosody.sqlite";
|
||
|
15 years ago
|
}
|
||
|
|
|
||
|
|
]]
|