marco-c / mercurius

Generic Web Push server
https://mozcurius.herokuapp.com/
Apache License 2.0
53 stars 13 forks source link

Without docker how to install and run #110

Closed vijayaa closed 8 years ago

vijayaa commented 8 years ago

i want to install mercurius without docker. how to do that

zalun commented 8 years ago

I think the steps would be as follows:

git clone https://github.com/marco-c/mercurius.git
cd mercurius
npm install
# Install redis (e.g. `brew redis` on Mac)
REDISCLOUD_URL="redis://localhost:6379" GCM_API_KEY="YOUR_GCM_KEY" DISABLE_SSL_REDIRECT="1" start.sh
vijayaa commented 8 years ago

Thanks