From cb0d44753d56ac44e423432a0a3cb2f1ea0bb23e Mon Sep 17 00:00:00 2001 From: Jeremy Zhang Date: Sun, 3 Sep 2017 02:59:08 +0000 Subject: [PATCH] Start redis server during installation for cloud9 --- cloud9_install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloud9_install.sh b/cloud9_install.sh index 88650f0..97919d6 100644 --- a/cloud9_install.sh +++ b/cloud9_install.sh @@ -1,8 +1,9 @@ #!/usr/bin/env bash -echo "[C9Setup] Installing mysql, and creating titan db table" +echo "[C9Setup] Installing mysql, redis, and creating titan db table" cd ~/workspace/ mysql-ctl start mysql -u root -e "CREATE DATABASE titan;" +sudo service redis-server start echo "[C9Setup] Copying config.py for webapp/discordbot and alembic.ini" cp ~/workspace/webapp/config.example.py ~/workspace/webapp/config.py