Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.02 KB

README.md

File metadata and controls

46 lines (35 loc) · 1.02 KB

Full Cosmo Docker

This example demonstrates how to run the entire Cosmo platform locally with Docker Compose.

Prerequisites

Getting started

Warning

Please give Docker Desktop enough resources (CPU, Memory) to run the platform. We recommend at least 4 CPUs and 8GB of memory.

  1. Start the platform:
./start.sh
  1. Navigate to the Studio Playground and login before with the default credentials:
Username: foo@wundergraph.com
Password: wunder@123

Finally 🚀, run the query in the Playground:

query MyEmployees {
  employees {
    details {
      forename
    }
    currentMood
    derivedMood
    isAvailable
    notes
    products
  }
}

After you are done, you can clean up the demo by running ./destroy.sh.