Updated README on how to specify port number when running server

This commit is contained in:
mbeigel 2017-10-01 16:37:17 -04:00
parent 5f25d92be6
commit 79b8df15d3
1 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,10 @@ This is the source code for my post on [Building a Blockchain](https://medium.co
1. Make sure [Python 3.6+](https://www.python.org/downloads/) is installed
1. Install requirements: `$ pip install -r requirements.txt`
1. Run the server: `$ python blockchain.py`
1. Run the server:
* `$ python blockchain.py`
* `$ python blockchain.py -p 5001`
* `$ python blockchain.py --port 5002`
## Contributing