I am an example Grouparoo deployment. This project includes:
- An example
package.jsonfor using Grouparoo and a few common plugins. - An example
Procfilefor Heroku-like deployments. - An example
Dockerfilefor building a docker image from this project, along with adocker-compose.ymlfor linking Grouparoo to associated services (Redis and Postgres), and splitting work between web and worker nodes. - Example Kubernetes files to deploy this application to AWS EKS.
Learn more at https://www.grouparoo.com/docs/deployment
I am built automatically to https://hub.docker.com/r/grouparoo/app-example yielding the grouparoo/app-example docker image.
I am tested automatically via Github Actions against multiple versions of node.js.
Assuming you have Docker installed:
# in a new directory
curl -L https://www.grouparoo.com/docker-compose --output docker-compose.yml
docker-compose up- Clone this repo (
git clone https://github.com/grouparoo/app-example.git) - Ensure that you have node.js (v12+), Redis, and Postgres installed locally
cp .env.example .envand check that those values work for your local setupnpm installnpm start
Grouparoo releases stable versions against the latest npm tag, but also releases weekly against the next npm tag. To try the newest versions of grouparoo (our "Beta" builds), change "latest" to "next" within the package.json, and then run npm install again. You can learn more about the Grouparoo release process here.