Skip to content

Commit

Permalink
Add debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
benmj87 authored May 26, 2017
1 parent 704781f commit 01028e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ echo "publish ${PROJECT_FILE}"
dotnet publish $PROJECT_FILE --output ${BUILD_DIR}/heroku_output --configuration Release

cp -v $BP_DIR/lib/antitlsproxy ${BUILD_DIR}/heroku_output
chmod +777 ${BUILD_DIR}/heroku_output

cat << EOT >> ${BUILD_DIR}/Procfile
web: ls \$HOME/heroku_output && cd \$HOME/heroku_output && dotnet "./${PROJECT_NAME}.dll" --server.urls http://127.0.0.1:6589 & chmod +011 $HOME/heroku_output/antitlsproxy && \$HOME/heroku_output/antitlsproxy --addr :\$PORT --url http://127.0.0.1:6589
web: cd \$HOME/heroku_output && dotnet "./${PROJECT_NAME}.dll" --server.urls http://127.0.0.1:6589 & chmod +777 $HOME/heroku_output/antitlsproxy && \$HOME/heroku_output/antitlsproxy --addr :\$PORT --url http://127.0.0.1:6589
EOT

0 comments on commit 01028e0

Please sign in to comment.