Running Hardhat Network as a daemon #2930
Answered
by
fvictorio
JasperAlexander
asked this question in
Troubleshooting
-
How to spin up an instance of Hardhat Network as a daemon? |
Beta Was this translation helpful? Give feedback.
Answered by
fvictorio
Jul 12, 2022
Replies: 1 comment 4 replies
-
I guess you mean running Hardhat Network in the background with a "detached" kind of flag (like the Two things that come to mind are creating a Docker image with a running Hardhat network, or using something like |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
JasperAlexander
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I guess you mean running Hardhat Network in the background with a "detached" kind of flag (like the
--detach
flag in docker), right? If that's what you're asking, we don't have anything built-in for that.Two things that come to mind are creating a Docker image with a running Hardhat network, or using something like
pm2
. There's also the simple option of just usingnohup
.