13 lines
423 B
Python
13 lines
423 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
"""Example: mine a project folder into the palace."""
|
||
|
|
|
||
|
|
import sys
|
||
|
|
|
||
|
|
project_dir = sys.argv[1] if len(sys.argv) > 1 else "~/projects/my_app"
|
||
|
|
print("Step 1: Initialize rooms from folder structure")
|
||
|
|
print(f" mempalace init {project_dir}")
|
||
|
|
print("\nStep 2: Mine everything")
|
||
|
|
print(f" mempalace mine {project_dir}")
|
||
|
|
print("\nStep 3: Search")
|
||
|
|
print(" mempalace search 'why did we choose this approach'")
|