Skip to content
This repository was archived by the owner on Sep 25, 2025. It is now read-only.

Dev Environment Setup

Barrett Falk edited this page Jan 31, 2024 · 9 revisions
  1. Add .env file to the backend directory (note: file is attached, and needs to be renamed to .env)
  2. Run the command docker-compose up. For development purposes, you'll likely just want to start the database and migrations containers via docker-compose, and start the backend using npm start (from within the backend directory).

backend.env.txt

GraphQL Playground

Useful in development environment. Go to http://localhost:3003/graphql, and you can run queries.

e.g.

query { users { id name email } }

Clone this wiki locally