-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,123 additions
and
842 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
# `ranges` tells portman which ranges of ports to allocate ports in. It is an | ||
# array of two-item arrays. The first item is the start of the port range and | ||
# the second item is the end of the port range. | ||
# `ranges` tells portman which ranges of ports can be assigned to projects. It | ||
# is an array of two-item arrays. The first item is the start of the port range | ||
# and the second item is the end of the port range. | ||
# | ||
# Example (allocates ports from 3000-3099 and 3200-3299): | ||
# Example (assigns ports from 3000-3099 and 3200-3299): | ||
# ranges = [[3000, 3099], [3200, 3299]] | ||
ranges = [[3000, 3999]] | ||
|
||
# `ranges` overrides `ranges` and tells portman which ports to never allocate. | ||
# `reserved` overrides `ranges` and tells portman which ports to never assign. | ||
# It is an array of integers. | ||
# | ||
# Example (allocates ports in `ranges` except for 3210 and 3121): | ||
# Example (assigns ports in `ranges` except for 3210 and 3121): | ||
# reserved = [3210, 3121] | ||
reserved = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.