mirror of https://github.com/zulip/zulip.git
tools: Add script to start database services for WSL.
It needs to be run everytime WSL is restarted.
This commit is contained in:
parent
888214196c
commit
cf4349d1c1
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
set -x
|
||||
set -e
|
||||
|
||||
# These services are no longer running when WSL is restarted
|
||||
# and hence they have to be manually started.
|
||||
sudo service rabbitmq-server start
|
||||
sudo service memcached start
|
||||
sudo service redis-server start
|
||||
sudo service postgresql start
|
Loading…
Reference in New Issue