Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated DSAdmin page for Docker #330

Merged
merged 2 commits into from
Jul 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion Debugging-datastore-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@ If you need to debug the data in Google Cloud Datastore Emulator when running th

In some cases it is possible that the local datastore data are not deleted when the server is rerun, you can delete the data by running `curl -X POST http://localhost:8089/reset` when the devserver is running.

## How start DSAdmin
## How to start DSAdmin

# Docker Setup

1. Build and run dev-server using `make build` and `make run-devserver` respectively.
2. Once the dev-server is running, run `make run-dsadmin` in a separate terminal window.
3. Navigate to `localhost:8080` to access DSAdmin.

## Python Setup

1. Download an archive for your platform and processor from the [DSAdmin releases GitHub page](https://github.com/remko/dsadmin/releases)
2. Unpack the archive and put the binary somewhere you can easily access it through the terminal
Expand Down
Loading