https://github.com/sanshirookazaki/datastore-gui
GUI for Google Cloud Datastore Emulator
https://github.com/sanshirookazaki/datastore-gui
google-cloud-datastore google-cloud-platform
Last synced: 6 months ago
JSON representation
GUI for Google Cloud Datastore Emulator
- Host: GitHub
- URL: https://github.com/sanshirookazaki/datastore-gui
- Owner: sanshirookazaki
- Created: 2021-02-03T13:43:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-16T22:57:31.000Z (over 4 years ago)
- Last Synced: 2024-06-19T06:48:10.370Z (about 2 years ago)
- Topics: google-cloud-datastore, google-cloud-platform
- Language: TypeScript
- Homepage:
- Size: 150 KB
- Stars: 9
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Datastore GUI
GUI for Google Cloud Datastore Emulator

## Getting started
### docker
You can run it with docker-compose as in the [example](https://github.com/sanshirookazaki/datastore-gui/blob/master/example/docker-compose.yml).
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
:
```