Skip to main content

Datastore Viewer for emulator

Project description

datastore-viewer

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

Quickstart using docker-compose

A example of docker-compose.yml:

version: "3"

services:
  datastore_emulator:
    image: quay.io/gumo/datastore-emulator
    environment:
      DATASTORE_PROJECT_ID: test-project
      DATASTORE_LISTEN_ADDRESS: 0.0.0.0:8081
    ports:
      - "8081:8081"
    volumes:
      - datastore-emulator-storage:/opt/data
    # command: start-datastore --no-store-on-disk --consistency=1.0

  datastore_viewer:
    image: quay.io/gumo/datastore-viewer
    environment:
      DATASTORE_VIEWER_HOST: 0.0.0.0
      DATASTORE_VIEWER_PORT: 18081
      GOOGLE_CLOUD_PROJECT: test-project
      DATASTORE_EMULATOR_HOST: datastore_emulator:8081
    depends_on:
      - datastore_emulator
    ports:
      - "18081:18081"

volumes:
  datastore-emulator-storage:
    driver: local

Execute docker containers:

docker-compose up

Please access to: http://127.0.0.1:18081

for Developers

Setup

Create new venv:

$ python -m venv venv
$ source venv/bin/activate

Upgrade pip and install building tools:

$ pip install --upgrade pip
$ pip install twine wheel pytest pip-tools

Install dependency packages:

$ pip install -r requirements.txt

Run

$ export DATASTORE_EMULATOR_HOST=127.0.0.1:8081
$ make run

Package Build

$ make build

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.2.0a0.tar.gz (758.3 kB view hashes)

Uploaded Source

Built Distribution

datastore_viewer-0.2.0a0-py3-none-any.whl (772.1 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