diff --git a/.gitignore b/.gitignore index 75ba0ef5af..f5ff541780 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ selenium-* node_modules pm2 +dump.rdb diff --git a/_scripts/install_all.sh b/_scripts/install_all.sh index 90744d3e6c..3a485e8b69 100755 --- a/_scripts/install_all.sh +++ b/_scripts/install_all.sh @@ -2,18 +2,20 @@ # Clone all the projects -git clone https://github.com/mozilla/fxa-content-server.git -git clone https://github.com/mozilla/fxa-auth-server.git -git clone https://github.com/vladikoff/browserid-verifier.git -b http +git clone https://github.com/mozilla/fxa-content-server.git & +git clone https://github.com/mozilla/fxa-auth-server.git & +git clone https://github.com/vladikoff/browserid-verifier.git -b http & -git clone https://github.com/mozilla/fxa-oauth-server.git -git clone https://github.com/mozilla/fxa-oauth-console.git +git clone https://github.com/mozilla/fxa-oauth-server.git & +git clone https://github.com/mozilla/fxa-oauth-console.git & -git clone https://github.com/mozilla/fxa-profile-server.git +git clone https://github.com/mozilla/fxa-profile-server.git & -git clone https://github.com/mozilla/123done.git -b oauth +git clone https://github.com/mozilla/123done.git -b oauth & -git clone https://github.com/mozilla-services/loop-server.git +git clone https://github.com/mozilla-services/loop-server.git & + +wait # Install and Setup all the projects diff --git a/_scripts/redis.sh b/_scripts/redis.sh new file mode 100755 index 0000000000..fb91a334e5 --- /dev/null +++ b/_scripts/redis.sh @@ -0,0 +1,2 @@ +redis-cli shutdown +redis-server diff --git a/servers.json b/servers.json index 0f17852c61..56ab31bf61 100644 --- a/servers.json +++ b/servers.json @@ -97,6 +97,12 @@ "PORT": "5050" }, "max_restarts": "1" + }, + { + "name": "redis-server PORT 6379", + "script": "redis.sh", + "cwd": "_scripts", + "max_restarts": "1" } ] -} \ No newline at end of file +}