ArchiveBox/archivebox/cli/archivebox_server.py

84 lines
2.4 KiB
Python
Raw Normal View History

2019-04-17 09:42:35 +00:00
#!/usr/bin/env python3
__package__ = 'archivebox.cli'
__command__ = 'archivebox server'
import sys
import argparse
2024-10-01 00:44:18 +00:00
from pathlib import Path
2019-04-27 21:26:24 +00:00
from typing import Optional, List, IO
2019-04-17 09:42:35 +00:00
2024-10-01 00:25:15 +00:00
from archivebox.misc.util import docstring
from archivebox.config import DATA_DIR
from archivebox.config.common import SERVER_CONFIG
from ..logging_util import SmartFormatter, reject_stdin
2024-10-01 00:44:18 +00:00
from ..main import server
2019-04-17 09:42:35 +00:00
@docstring(server.__doc__)
2019-04-27 21:26:24 +00:00
def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional[str]=None) -> None:
2019-04-17 09:42:35 +00:00
parser = argparse.ArgumentParser(
prog=__command__,
description=server.__doc__,
2019-04-17 09:42:35 +00:00
add_help=True,
formatter_class=SmartFormatter,
2019-04-17 09:42:35 +00:00
)
parser.add_argument(
'runserver_args',
nargs='*',
type=str,
2024-10-01 00:44:18 +00:00
default=[SERVER_CONFIG.BIND_ADDR],
2019-04-17 09:42:35 +00:00
help='Arguments to pass to Django runserver'
)
parser.add_argument(
'--reload',
action='store_true',
help='Enable auto-reloading when code or templates change',
)
parser.add_argument(
'--debug',
action='store_true',
help='Enable DEBUG=True mode with more verbose errors',
)
parser.add_argument(
'--nothreading',
action='store_true',
help='Force runserver to run in single-threaded mode',
)
parser.add_argument(
'--init',
action='store_true',
help='Run a full archivebox init/upgrade before starting the server',
)
parser.add_argument(
'--quick-init', '-i',
action='store_true',
help='Run quick archivebox init/upgrade before starting the server',
)
parser.add_argument(
'--createsuperuser',
action='store_true',
help='Run archivebox manage createsuperuser before starting the server',
)
parser.add_argument(
'--daemonize',
action='store_true',
help='Run the server in the background as a daemon',
)
2019-04-27 21:26:24 +00:00
command = parser.parse_args(args or ())
reject_stdin(__command__, stdin)
2019-04-17 09:42:35 +00:00
2019-04-27 21:26:24 +00:00
server(
runserver_args=command.runserver_args + (['--nothreading'] if command.nothreading else []),
2019-04-27 21:26:24 +00:00
reload=command.reload,
debug=command.debug,
init=command.init,
quick_init=command.quick_init,
createsuperuser=command.createsuperuser,
daemonize=command.daemonize,
2024-10-01 00:44:18 +00:00
out_dir=Path(pwd) if pwd else DATA_DIR,
2019-04-27 21:26:24 +00:00
)
2019-04-17 09:42:35 +00:00
if __name__ == '__main__':
2019-04-27 21:26:24 +00:00
main(args=sys.argv[1:], stdin=sys.stdin)