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

feat: Add adminer #295

Merged
merged 9 commits into from
Nov 1, 2023
2 changes: 2 additions & 0 deletions src/mev_relay/mev_relay_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ NETWORK_ID_TO_NAME = {
}

DONT_PERSIST_TO_DISK = False
LAUNCH_ADMINER = True


def launch_mev_relay(
Expand All @@ -39,6 +40,7 @@ def launch_mev_relay(
database="postgres",
service_name="postgres",
persistent=DONT_PERSIST_TO_DISK,
h4ck3rk3y marked this conversation as resolved.
Show resolved Hide resolved
launch_adminer=LAUNCH_ADMINER,
)

network_name = NETWORK_ID_TO_NAME.get(network_id, network_id)
Expand Down