mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-22 07:51:00 +00:00
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:
|
else:
|
||||||
from waitress import serve
|
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(
|
serve(
|
||||||
app,
|
app,
|
||||||
host=args.host,
|
host=args.host,
|
||||||
port=args.port,
|
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) + ',',
|
' q: ' + this.$options.filters.escape(this.inputText) + ',',
|
||||||
' source: ' + this.$options.filters.escape(this.sourceLang) + ',',
|
' source: ' + this.$options.filters.escape(this.sourceLang) + ',',
|
||||||
' target: ' + this.$options.filters.escape(this.targetLang) + ',',
|
' 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" }',
|
' headers: { "Content-Type": "application/json" }',
|
||||||
'});',
|
'});',
|
||||||
|
|
Loading…
Reference in a new issue