2019-04-17 09:42:35 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
__package__ = 'archivebox.cli'
|
|
|
|
__command__ = 'archivebox server'
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import argparse
|
|
|
|
|
2019-04-27 21:26:24 +00:00
|
|
|
from typing import Optional, List, IO
|
2019-04-17 09:42:35 +00:00
|
|
|
|
2020-07-24 17:25:25 +00:00
|
|
|
from ..main import server
|
|
|
|
from ..util import docstring
|
2020-08-14 03:21:37 +00:00
|
|
|
from ..config import OUTPUT_DIR, BIND_ADDR
|
2020-07-22 16:02:13 +00:00
|
|
|
from ..logging_util import SmartFormatter, reject_stdin
|
2019-04-17 09:42:35 +00:00
|
|
|
|
2019-05-01 03:10:48 +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__,
|
2019-05-01 03:10:48 +00:00
|
|
|
description=server.__doc__,
|
2019-04-17 09:42:35 +00:00
|
|
|
add_help=True,
|
2019-05-01 03:10:48 +00:00
|
|
|
formatter_class=SmartFormatter,
|
2019-04-17 09:42:35 +00:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'runserver_args',
|
|
|
|
nargs='*',
|
|
|
|
type=str,
|
2020-08-14 03:21:37 +00:00
|
|
|
default=[BIND_ADDR],
|
2019-04-17 09:42:35 +00:00
|
|
|
help='Arguments to pass to Django runserver'
|
|
|
|
)
|
2019-04-22 23:06:48 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--reload',
|
|
|
|
action='store_true',
|
|
|
|
help='Enable auto-reloading when code or templates change',
|
|
|
|
)
|
2019-05-01 03:11:41 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--debug',
|
|
|
|
action='store_true',
|
|
|
|
help='Enable DEBUG=True mode with more verbose errors',
|
|
|
|
)
|
2021-02-16 20:46:58 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--nothreading',
|
|
|
|
action='store_true',
|
|
|
|
help='Force runserver to run in single-threaded mode',
|
|
|
|
)
|
2020-07-28 09:57:34 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--init',
|
|
|
|
action='store_true',
|
2021-02-15 19:52:10 +00:00
|
|
|
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',
|
2020-07-28 09:57:34 +00:00
|
|
|
)
|
2021-01-29 03:27:02 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--createsuperuser',
|
|
|
|
action='store_true',
|
|
|
|
help='Run archivebox manage createsuperuser before starting the server',
|
|
|
|
)
|
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(
|
2021-02-16 20:46:58 +00:00
|
|
|
runserver_args=command.runserver_args + (['--nothreading'] if command.nothreading else []),
|
2019-04-27 21:26:24 +00:00
|
|
|
reload=command.reload,
|
2019-05-01 03:11:41 +00:00
|
|
|
debug=command.debug,
|
2020-07-28 09:57:34 +00:00
|
|
|
init=command.init,
|
2021-02-15 19:52:10 +00:00
|
|
|
quick_init=command.quick_init,
|
2021-01-29 03:27:02 +00:00
|
|
|
createsuperuser=command.createsuperuser,
|
2019-04-27 21:26:24 +00:00
|
|
|
out_dir=pwd or OUTPUT_DIR,
|
|
|
|
)
|
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)
|