From b7d9cadcfd96c2194639a6d5028834e8cf9643cf Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 20 May 2024 19:25:00 -0700 Subject: [PATCH] Update `README.md` to make the git submodule process clearer Re-insert sql extensions section --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 741e072..02c61f2 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,14 @@ First, clone this project: `git clone https://github.com/econia-labs/inbox`. Then, clone git submodules: `git submodule update --init --recursive`. +NOTE: If you are running this command from [emojicoin dot fun] repository, +you need to specify to only update `src/inbox` if you don't have access to +the private TradingView `charting_library` repository. + +```shell +git submodule update --init --recursive src/inbox +``` + ### Step 1: Configuration Copy `example.env` to `.env` and update the required fields. Field @@ -103,3 +111,6 @@ CREATE TRIGGER notify_event ``` This will emit an MQTT event with the topic as your event type for all your contract's events. + +[emojicoin dot fun]: https://github.com/econia-labs/emojicoin-dot-fun +