I need to start the blog demo in the following ports:
127.0.0.1:8000 127.0.0.1:8001 127.0.0.1:8002 127.0.0.1:8003
When I run the application using:
./demos/blog/blog.py
it starts in port 8888 as defined by:
define("port", default=8888, help="run on the given port", type=int)
How do I run multiple instances in multiple ports?
Thanks
Seb