From f373df7bd43ebe2c557f16c9e0c139975b63396c Mon Sep 17 00:00:00 2001
From: Nick Sweeting <git@sweeting.me>
Date: Thu, 2 Jul 2020 13:23:40 -0400
Subject: [PATCH] update helptext to clarify adding links

---
 archivebox/main.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/archivebox/main.py b/archivebox/main.py
index a1aba118..f1fb98ce 100644
--- a/archivebox/main.py
+++ b/archivebox/main.py
@@ -377,11 +377,11 @@ def init(force: bool=False, out_dir: str=OUTPUT_DIR) -> None:
     else:
         print('{green}[√] Done. A new ArchiveBox collection was initialized ({} links).{reset}'.format(len(all_links), **ANSI))
     print()
-    print('    {lightred}Hint:{reset}To view your archive index, open:'.format(**ANSI))
-    print('        {}'.format(os.path.join(out_dir, HTML_INDEX_FILENAME)))
+    print('    {lightred}Hint:{reset} To view your archive index, run:'.format(**ANSI))
+    print('        archivebox server  # then visit http://127.0.0.1:8000')
     print()
     print('    To add new links, you can run:')
-    print("        archivebox add 'https://example.com'")
+    print("        archivebox add ~/some/path/or/url/to/list_of_links.txt")
     print()
     print('    For more usage and examples, run:')
     print('        archivebox help')