mirror of
https://github.com/status-im/status-python-sdk.git
synced 2026-08-30 21:51:14 +00:00
- Initial documentation with how to run the project - Store `create_account_and_login` credentials locally so they can be reused when messaging - Script can be ran with arguments
10 lines
239 B
Python
10 lines
239 B
Python
import os
|
|
|
|
CREDENTIALS_PATH = os.path.join(os.path.dirname(__file__), "accounts")
|
|
|
|
STATUS_BACKEND_PARAMS = {
|
|
"url": "http://localhost:8080",
|
|
"logLevel": "INFO",
|
|
"data_dir": os.path.join(os.path.dirname(__file__), "data-dir")
|
|
}
|