File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -694,6 +694,13 @@ build_all_ffi_linux: ## Build all FFIs for Linux
694694 @echo " All Linux FFIs built successfully."
695695
696696__EXPLORER__ :
697+
698+ run_explorer_without_docker_db : explorer_ecto_setup_db
699+ @cd explorer/ && \
700+ pnpm install --prefix assets && \
701+ mix setup && \
702+ ./start.sh
703+
697704run_explorer : explorer_run_db explorer_ecto_setup_db
698705 @cd explorer/ && \
699706 pnpm install --prefix assets && \
Original file line number Diff line number Diff line change @@ -527,6 +527,13 @@ to run it using the following documentation:
527527
528528### DB Setup
529529
530+ > [ !NOTE]
531+ > If you want to run the DB separately, without docker,
532+ > you can set it up and start the explorer with the following command:
533+ > ``` bash
534+ > make run_explorer_without_docker_db
535+ > ` ` `
536+
530537To set up the explorer, an installation of the DB is necessary.
531538
532539First, you' ll need to install docker if you don' t have it already.
@@ -562,6 +569,13 @@ make explorer_ecto_setup_db
562569make run_explorer
563570```
564571
572+ > [ !NOTE]
573+ > If you want to run the DB separately, without docker,
574+ > you can set it up and start the explorer with the following command:
575+ ``` bash
576+ make run_explorer_without_docker_db
577+ ```
578+
565579</details >
566580
567581To clear the DB, you can run:
You can’t perform that action at this time.
0 commit comments