mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-01-18 21:32:38 +01:00
e91096c535
got the idea from: https://github.com/lnbits/lnbits/issues/2447 arguments it should be explicity allowed with `click` and a description should be added like here.
87 lines
2.4 KiB
Python
87 lines
2.4 KiB
Python
import multiprocessing as mp
|
|
import time
|
|
from pathlib import Path
|
|
|
|
import click
|
|
import uvicorn
|
|
from uvicorn.supervisors import ChangeReload
|
|
|
|
from lnbits.settings import set_cli_settings, settings
|
|
|
|
|
|
@click.command(
|
|
context_settings={
|
|
"ignore_unknown_options": True,
|
|
"allow_extra_args": True,
|
|
}
|
|
)
|
|
@click.option("--port", default=settings.port, help="Port to listen on")
|
|
@click.option("--host", default=settings.host, help="Host to run LNBits on")
|
|
@click.option(
|
|
"--forwarded-allow-ips",
|
|
default=settings.forwarded_allow_ips,
|
|
help="Allowed proxy servers",
|
|
)
|
|
@click.option("--ssl-keyfile", default=None, help="Path to SSL keyfile")
|
|
@click.option("--ssl-certfile", default=None, help="Path to SSL certificate")
|
|
@click.option(
|
|
"--reload", is_flag=True, default=False, help="Enable auto-reload for development"
|
|
)
|
|
def main(
|
|
port: int,
|
|
host: str,
|
|
forwarded_allow_ips: str,
|
|
ssl_keyfile: str,
|
|
ssl_certfile: str,
|
|
reload: bool,
|
|
):
|
|
"""Launched with `poetry run lnbits` at root level"""
|
|
|
|
# create data dir if it does not exist
|
|
Path(settings.lnbits_data_folder).mkdir(parents=True, exist_ok=True)
|
|
Path(settings.lnbits_data_folder, "logs").mkdir(parents=True, exist_ok=True)
|
|
|
|
# create `extensions`` dir if it does not exist
|
|
Path(settings.lnbits_extensions_path, "extensions").mkdir(
|
|
parents=True, exist_ok=True
|
|
)
|
|
|
|
set_cli_settings(host=host, port=port, forwarded_allow_ips=forwarded_allow_ips)
|
|
|
|
while True:
|
|
config = uvicorn.Config(
|
|
"lnbits.__main__:app",
|
|
loop="uvloop",
|
|
port=port,
|
|
host=host,
|
|
forwarded_allow_ips=forwarded_allow_ips,
|
|
ssl_keyfile=ssl_keyfile,
|
|
ssl_certfile=ssl_certfile,
|
|
reload=reload or False,
|
|
)
|
|
|
|
server = uvicorn.Server(config=config)
|
|
|
|
if config.should_reload:
|
|
sock = config.bind_socket()
|
|
run = ChangeReload(config, target=server.run, sockets=[sock]).run
|
|
else:
|
|
run = server.run
|
|
|
|
process = mp.Process(target=run)
|
|
process.start()
|
|
server_restart.wait()
|
|
server_restart.clear()
|
|
server.should_exit = True
|
|
server.force_exit = True
|
|
time.sleep(3)
|
|
process.terminate()
|
|
process.join()
|
|
time.sleep(1)
|
|
|
|
|
|
server_restart = mp.Event()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|