Skip to main content

Datastore Viewer for emulator

Project description

datastore-viewer

datastore-viewer is a simple viewer of Google Cloud Datastore Emulator.

Installing

$ pip install --upgrade datastore-viewer

Running

datastore-viewer

or

export DATASTORE_VIEWER_HOST=127.0.0.1
export DATASTORE_VIEWER_PORT=8082
datastore-viewer

Running with docker-compose

A example of docker-compose.yml:

version: '3'
services:
  datastore_emulator:
    image: singularities/datastore-emulator
    volumes:
      - datastore-emulator-storage:/opt/data
    environment:
      DATASTORE_PROJECT_ID: sample-project-id
      DATASTORE_LISTEN_ADDRESS: 0.0.0.0:8081
    ports:
      - "8081:8081"

  datastore_viewer:
    image: python:3.7.2-stretch
    environment:
      DATASTORE_VIEWER_HOST: 0.0.0.0
      DATASTORE_VIEWER_PORT: 18081
      DATASTORE_EMULATOR_HOST: datastore_emulator:8081
    command: |
      bash -ex -c "
      pip install --upgrade datastore-viewer
      datastore-viewer
      "
    ports:
      - "18081:18081"

volumes:
  datastore-emulator-storage:
    driver: local

Execute docker containers:

docker-compose up

Please access to: http://127.0.0.1:18081

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

datastore-viewer-0.0.5.tar.gz (9.5 kB view hashes)

Uploaded Source

Built Distribution

datastore_viewer-0.0.5-py3-none-any.whl (12.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page