mirror of
https://github.com/wekan/wekan.git
synced 2025-04-21 12:37:07 -04:00
The scripts used to assume that ~/repos/wekan was a local wekan repo. They now check that the active directory is a wekan repo.
7 lines
191 B
Bash
Executable file
7 lines
191 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo -e "\nWekan node.js:"
|
|
ps aux | grep "node main.js" | grep -v grep
|
|
echo -e "\nWekan mongodb:"
|
|
ps aux | grep mongo | grep -v grep
|
|
echo -e "\nWekan logs are at $PWD/wekan.log\n"
|