mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-07 15:03:37 +00:00
Test
This commit is contained in:
parent
0ed83303af
commit
3c3e2830cb
2 changed files with 2 additions and 7 deletions
|
@ -2,8 +2,8 @@ bazarr_version = '0.1.1'
|
||||||
|
|
||||||
from bottle import route, run, template, static_file, request, redirect
|
from bottle import route, run, template, static_file, request, redirect
|
||||||
import bottle
|
import bottle
|
||||||
#bottle.debug(True)
|
bottle.debug(True)
|
||||||
#bottle.TEMPLATES.clear()
|
bottle.TEMPLATES.clear()
|
||||||
|
|
||||||
import os
|
import os
|
||||||
bottle.TEMPLATE_PATH.insert(0,os.path.join(os.path.dirname(__file__), 'views/'))
|
bottle.TEMPLATE_PATH.insert(0,os.path.join(os.path.dirname(__file__), 'views/'))
|
||||||
|
|
|
@ -41,11 +41,6 @@ CREATE TABLE "table_settings_general" (
|
||||||
`auto_update` INTEGER
|
`auto_update` INTEGER
|
||||||
);
|
);
|
||||||
INSERT INTO `table_settings_general` (ip,port,base_url,path_mapping,log_level, branch, auto_update) VALUES ('0.0.0.0',6767,'/',Null,'INFO','master','True');
|
INSERT INTO `table_settings_general` (ip,port,base_url,path_mapping,log_level, branch, auto_update) VALUES ('0.0.0.0',6767,'/',Null,'INFO','master','True');
|
||||||
CREATE TABLE `table_scheduler` (
|
|
||||||
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
|
|
||||||
`name` TEXT NOT NULL,
|
|
||||||
`frequency` TEXT NOT NULL
|
|
||||||
);
|
|
||||||
CREATE TABLE "table_history" (
|
CREATE TABLE "table_history" (
|
||||||
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
|
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
|
||||||
`action` INTEGER NOT NULL,
|
`action` INTEGER NOT NULL,
|
||||||
|
|
Loading…
Reference in a new issue