mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 17:27:16 +08:00
DEV: Bump rubocop_discourse (#29608)
This commit is contained in:

committed by
GitHub

parent
ff494f2f94
commit
57f4176b57
@ -18,14 +18,14 @@ export BASE="forum"
|
||||
=end
|
||||
|
||||
class ImportScripts::MylittleforumSQL < ImportScripts::Base
|
||||
DB_HOST ||= ENV["DB_HOST"] || "localhost"
|
||||
DB_NAME ||= ENV["DB_NAME"] || "mylittleforum"
|
||||
DB_PW ||= ENV["DB_PW"] || ""
|
||||
DB_USER ||= ENV["DB_USER"] || "root"
|
||||
TABLE_PREFIX ||= ENV["TABLE_PREFIX"] || "forum_"
|
||||
IMPORT_AFTER ||= ENV["IMPORT_AFTER"] || "1970-01-01"
|
||||
IMAGE_BASE ||= ENV["IMAGE_BASE"] || ""
|
||||
BASE ||= ENV["BASE"] || "forum/"
|
||||
DB_HOST = ENV["DB_HOST"] || "localhost"
|
||||
DB_NAME = ENV["DB_NAME"] || "mylittleforum"
|
||||
DB_PW = ENV["DB_PW"] || ""
|
||||
DB_USER = ENV["DB_USER"] || "root"
|
||||
TABLE_PREFIX = ENV["TABLE_PREFIX"] || "forum_"
|
||||
IMPORT_AFTER = ENV["IMPORT_AFTER"] || "1970-01-01"
|
||||
IMAGE_BASE = ENV["IMAGE_BASE"] || ""
|
||||
BASE = ENV["BASE"] || "forum/"
|
||||
BATCH_SIZE = 1000
|
||||
CONVERT_HTML = true
|
||||
QUIET = nil || ENV["VERBOSE"] == "TRUE"
|
||||
|
Reference in New Issue
Block a user