Use port in example deployment

This commit is contained in:
Daniel Flanagan 2020-12-17 15:24:55 -06:00
parent 8deb142ebc
commit 7b4d6dbbf2
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
1 changed files with 2 additions and 2 deletions

View File

@ -23,6 +23,6 @@ MIX_ENV=prod mix release
## Deploy
```bash
rsync -r ./build/rel/ $YOUR_HOST:~/my-app
ssh $YOUR_HOST ~/my-app/bin/lytedev daemon
rsync -r build/rel/ $YOUR_HOST:~/my-app
ssh $YOUR_HOST PORT=80 ~/my-app/bin/lytedev daemon
```