Here is my procfile:
web: cd client && npm start
api: bundle exec rails s -p 3001
The web app works perfectly and runs on port 80 (see here: https://trucktrack-demo.herokuapp.com/) However I cannot seem to find the port that the rails api is running on. Any ideas on how to find this port (it is not 3001)?
Thanks in advance :-)