11 lines
391 B
Bash
11 lines
391 B
Bash
|
rm -rf log; mkdir log
|
||
|
|
||
|
nohup mongod --config mongod.yaml > log/mongod.log &
|
||
|
nohup deno run --allow-net --allow-read ismism.ts/src/serve.ts > log/ismism.log &
|
||
|
nohup nginx -p . -c nginx.conf > log/nginx.log &
|
||
|
|
||
|
sleep 0.1
|
||
|
tail log/mongo.log log/access.log log/error.log log/nginx.log log/mongod.log log/ismism.log
|
||
|
echo "\nismism started\n"
|
||
|
pgrep -lf nginx; pgrep -lf mongo; pgrep -lf "deno run"
|