mirror of
https://github.com/mempool/mempool.git
synced 2024-12-28 01:04:28 +01:00
11 lines
175 B
Bash
11 lines
175 B
Bash
|
#!/bin/sh
|
||
|
mysqld_safe&
|
||
|
sleep 5
|
||
|
nginx
|
||
|
cd /mempool.space/backend
|
||
|
rm -f mempool-config.json
|
||
|
rm -f cache.json
|
||
|
touch cache.json
|
||
|
jq -n env > mempool-config.json
|
||
|
node dist/index.js
|