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.0.5.tar.gz
(9.5 kB
view hashes)
Built Distribution
Close
Hashes for datastore_viewer-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a53ba02aeaec564924421532bbc729aa62fd9674c57caba5fd425119db666099 |
|
MD5 | 8f25cf7dac2137c70aec989ead9b5ce2 |
|
BLAKE2b-256 | 106ce586901bca87781dca7afd4105549ca38370799d080ce99b3e1052421945 |