f83db2fac1
- add external validation reports and open-source comparison references - integrate Jaimini arudha/graha pada, enhanced argala, and additional synastry kutas - update skill docs and capability matrices - add smoke tests for open-source integrations
18 lines
320 B
Python
18 lines
320 B
Python
#!/usr/bin/env python3
|
|
"""Jaimini Tropical Astrology Engine — Web Server.
|
|
|
|
Usage:
|
|
python run_jaimini_web.py
|
|
# Opens browser at http://127.0.0.1:8000
|
|
"""
|
|
|
|
import sys
|
|
import os
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
from jaimini.web.app import run
|
|
|
|
if __name__ == "__main__":
|
|
run()
|