Skip to content

Commit

Permalink
fix: testing ports for mocha (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
FossPrime committed May 4, 2023
1 parent f9ba293 commit 2c59f3f
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .replit
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,31 @@ regex = "Error: listen EADDRINUSE: address already in use"
message = "Try closing all web clients before running from the debugger or the shell."


# Multiple ports
# Ports
# ==============================
# https://docs.replit.com/programming-ide/configuring-repl#ports
# If you use an undefined port, your container may crash!

# Server port
[[ports]]
localPort = 3030
externalPort = 80

# Server's test env port
[[ports]]
localPort = 8998
externalPort = 8998

# Server debugging port
[[ports]]
localPort = 9000
externalPort = 9000

# React client
[[ports]]
localPort = 3000
externalPort = 3000

[nix]
channel = "stable-22_11"

Expand Down

0 comments on commit 2c59f3f

Please sign in to comment.