forked from mirrors/LibreTranslate
Say something on startup
This commit is contained in:
parent
78d2bc7be4
commit
79b9af9071
2 changed files with 6 additions and 2 deletions
|
@ -140,11 +140,14 @@ def main():
|
|||
else:
|
||||
from waitress import serve
|
||||
|
||||
url_scheme = "https" if args.ssl else "http"
|
||||
print("Running on %s://%s:%s" % (url_scheme, args.host, args.port))
|
||||
|
||||
serve(
|
||||
app,
|
||||
host=args.host,
|
||||
port=args.port,
|
||||
url_scheme="https" if args.ssl else "http",
|
||||
url_scheme=url_scheme,
|
||||
)
|
||||
|
||||
|
||||
|
|
|
@ -168,7 +168,8 @@ document.addEventListener('DOMContentLoaded', function(){
|
|||
' q: ' + this.$options.filters.escape(this.inputText) + ',',
|
||||
' source: ' + this.$options.filters.escape(this.sourceLang) + ',',
|
||||
' target: ' + this.$options.filters.escape(this.targetLang) + ',',
|
||||
' format: "' + (this.isHtml ? "html" : "text") + '"',
|
||||
' format: "' + (this.isHtml ? "html" : "text") + '",',
|
||||
' api_key: "' + (localStorage.getItem("api_key") || "") + '"',
|
||||
' }),',
|
||||
' headers: { "Content-Type": "application/json" }',
|
||||
'});',
|
||||
|
|
Loading…
Reference in a new issue