This repo allows you to install a GUI to visualize the data stored in your local emulated datastore
docker-compose up -d
Then by default, you can access to the GUI by visiting http://localhost:3000
If you don't create a .env file, default env is :
DATASTORE_PROJECT_ID=project-test
DATASTORE_PORT=8081
DATASTORE_LISTEN_ADDRESS=0.0.0.0:8081
GUI_PORT=3000
Add in .env:
GUI_PORT=1234
You need to set same port on
Add in .env:
DATASTORE_LISTEN_ADDRESS="0.0.0.0:4321"
DATASTORE_PORT=4321
Add in .env:
DATASTORE_PROJECT_ID="my-project"
You need to go to your Datastore and export your data's in your Cloud Storage
After download you file, you need to add it in "imports" directory
docker exec -it datastore sh
./imports.sh
Env variables doesn't change ? You need to rebuild your container
docker-compose down -v && docker-compose up -d --build