mirror of
https://github.com/mempool/mempool.git
synced 2025-02-22 06:21:46 +01:00
6 lines
189 B
Bash
Executable file
6 lines
189 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
export NVM_DIR="$HOME/.nvm"
|
|
source "$NVM_DIR/nvm.sh"
|
|
|
|
cd "${HOME}/unfurl/unfurler/" && \
|
|
screen -dmS "unfurl" sh -c 'while true;do npm run start-production;sleep 1;done'
|