Skip to content

Commit

Permalink
Set web server port to 1998
Browse files Browse the repository at this point in the history
This helps keep local storage separate from other projects that would default to 8080, and in the case that the 8080 was already taken, keeps local storage from being TOO separate, because it would pick a random port. It keeps the identity consistent.
And it makes the identity cooler :)
  • Loading branch information
1j01 committed Jun 28, 2021
1 parent 8240009 commit a79cb9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"webamp": "1.4.0"
},
"scripts": {
"start": "live-server",
"start": "live-server --port=1998",
"make-fs-index": "make_http_index | json > filesystem-index.json",
"make-fs-index @NOTE": "browserfs@2.0.0 is currently assumed to be installed globally",
"make-fs-index @TODO": "Create a pre-commit hook, or keep this file out of repo, either have it as part of a webserver, or just generated on deploy (in which case it could still be a static site). Ignore gitignored files, including globally gitignored lnk files... altho this is the one repo where lnk files might make sense; I'm sure there's a way to base it off of what things are checked in to git. git ls-files, or git ls-tree, ideally with the contents after staged changes would be applied (is there a 'tree-ish' for that?)",
Expand Down

0 comments on commit a79cb9c

Please sign in to comment.