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
Release history Release notifications | RSS feed
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.1.0a0.tar.gz
(11.5 kB
view hashes)
Built Distribution
Close
Hashes for datastore_viewer-0.1.0a0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93a805701752a4248968035c47db47e72304c5d8f1ba3711b07b5c27db6e87c9 |
|
MD5 | 15a42c2f778c334fb1f2598915b3f5a2 |
|
BLAKE2b-256 | 06c4e86b10e7c23d27220d330a23f4e43e122e34d170fb6406b7688bf6a6c02b |