Skip to content

sanshirookazaki/datastore-gui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Datastore GUI

GUI for Google Cloud Datastore Emulator demo.gif

Getting started

docker

You can run it with docker-compose as in the example.

The following environment variables need to be set.

  • PROJECT_ID: Google Cloud project ID
  • DATASTORE_EMULATOR_HOST: The emulator endpoint
  • PORT: the HTTP port (default 3000)
:
services:
  datastore-gui:
    image: 346o/datastore-gui:latest
    ports:
      - 3000:3000 # PORT:PORT
    environment:
      - PROJECT_ID=${PROJECT_ID}
      - DATASTORE_EMULATOR_HOST=datastore:8081
      - PORT=3000
: