Change default dev port to 7000

This commit is contained in:
Sebastian Serth
2021-04-29 11:48:17 +02:00
parent 52e913dfdd
commit b78a161914
5 changed files with 8 additions and 7 deletions

View File

@ -7,9 +7,9 @@
threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
threads threads_count, threads_count
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
# Specifies the `port` that Puma will listen on to receive requests; default is 7000.
#
port ENV.fetch("PORT") { 3000 }
port ENV.fetch("PORT") { 7000 }
# Specifies the `environment` that Puma will run in.
#