@allthings/sdk 6.6.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -473,3 +473,23 @@ When you squash merge, GitHub takes the title of the PR for the squash-merge's c
473
473
 
474
474
  By choosing a proper PR title e.g. `feat: my new feature` your merged PR will trigger a new release.
475
475
  See semantic-releases [docs](https://github.com/semantic-release/semantic-release#how-does-it-work) for available prefixes.
476
+
477
+ ## Local tests
478
+
479
+ To run local tests, init the shell from devenv and use this command:
480
+
481
+ ```shell
482
+ ALLTHINGS_OAUTH_CLIENT_ID='<oauth_client_id>' \
483
+ ALLTHINGS_OAUTH_CLIENT_SECRET='<oauth_client_secret>' \
484
+ ALLTHINGS_OAUTH_USERNAME='<oauth_username' \
485
+ ALLTHINGS_OAUTH_PASSWORD="<oauth_password>" \
486
+ ./bin/test-ci.sh --update --log accounts,events,php
487
+
488
+ ```
489
+
490
+ if you don't want to init the shell, please also provide next env variables to command as well:
491
+ - ALLTHINGS_ACCOUNTS_RECAPTCHA_SECRET_KEY
492
+ - SSL_PASS
493
+
494
+ Credentials could be found in `dev.secrets` repo.
495
+