15 lines
252 B
Python
15 lines
252 B
Python
#!/usr/bin/env python
|
|
"""
|
|
Quick start script for the web server.
|
|
|
|
Usage:
|
|
python run_server.py
|
|
python run_server.py --port 8080
|
|
python run_server.py --debug --reload
|
|
"""
|
|
|
|
from src.cli.serve import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|