mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
10 lines
142 B
Bash
10 lines
142 B
Bash
#!/bin/bash
|
|
|
|
if [ "${CRAWLAB_NODE_MASTER}" == "Y" ]; then
|
|
# Start nginx
|
|
service nginx start
|
|
fi
|
|
|
|
# Start backend
|
|
crawlab-server server
|