Stacktora / Templates / React Native + Express + Redis
Mobile

React Native + Express + Redis boilerplate

React Native (CLI) app with a Node/Express API, Postgres and a Redis cache. One click generates a complete, runnable bootstrap — docker-compose, Makefile, Dockerfile, CI and more.

Use this template Browse all templates

The stack

Node.js 24 PostgreSQL 5432Redis 6379

docker-compose.yml preview

# docker-compose.yml — generated by Stacktora
services:
  api:
    image: node:24-alpine
    command: npm run dev
    ports:
      - "3000:3000"
    env_file: [ .env ]
  postgres:
    image: postgres:18-alpine
    ports:
      - "5432:5432"
  redis:
    image: redis:8-alpine
    ports:
      - "6379:6379"

What you get

docker-compose.ymlMakefileDockerfileREADME.md.env.example.gitignore.dockerignore.github/workflows/ci.yml.tool-versions.editorconfigProcfile … and more

Quickstart

# clone, then one command to a running stack
git clone … && cd api
$ make setup   # install toolchain + deps, build images
$ make dev     # boot the full stack
# → api live at localhost:3000

Related templates

Open React Native + Express + Redis in Stacktora