-
Notifications
You must be signed in to change notification settings - Fork 196
feat(polymarket-notifier): add support for local execution #4893
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
base: master
Are you sure you want to change the base?
Conversation
|
|
||
| Now copy the absolute path of the generated `.env` file, e.g.: | ||
|
|
||
| export ENV_PATH=$HOME/UMAprotocol/bot-configs/.env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this assumes projects are kept under $HOME. It might be more robust after cloning the repos above to something like export UMA_ROOT="$(pwd)" and use that instead of $HOME/UMAprotocol
Adjust this for all places below where UMA repo root is referenced.
|
|
||
| From the same `monitor-v2` directory, run the notifier pointing to the generated `.env` file: | ||
|
|
||
| DOTENV_CONFIG_PATH=$ENV_PATH \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
People might have .env under monitor-v2 from prior work, and it seems that is taking override over DOTENV_CONFIG_PATH
Fixes UMA-2982