1271b842e5
* Made sure server_version_string was avalible. It would be undefined when chainId was provided to the constructor. Made server_version a private late-init member, and added a check to populate when needed * Added node's semver parsing for version string support checks * Security updated moved developement package JsSigniture to use Buffer.from * Updated npm dependancies to include node-fetch and semver * Documentation: Added simple example in readme * Documenation: Added clarity on providers of private key vaults * Documentation: switch to npm build/install no more references to yarn Squashed commit of the following: commit 5c321adb22493298fc0d2b3624ccffddbe66af97 Author: Eric Passmore <eric.passmore@gmail.com> Date: Mon Aug 15 09:51:25 2022 -0700 minor updates for node package updated dependancies in package.json switch all yarn instructures to use npm (its 2022 npm is the way to go) added a very simple example to get info into readme Updated documentation for send_transaction2 Removed EOSIO github references Updated .travel.yml with node_js 16.0.0 and npm@8.0.0 Date: Fri Aug 12 22:22:25 2022 -0700 minor fixes for release of node pkg commit 57bb0003a808e58de9154271cf12d3e9cfb68346 Author: Eric Passmore <eric.passmore@gmail.com> Date: Fri Aug 12 19:22:57 2022 -0700 init commit updated for integration tests commit 5855e69c1ed2a35c20300189272419ab95031fc6 Author: Eric Passmore <eric.passmore@gmail.com> Date: Tue Aug 9 13:36:53 2022 -0700 housekeeping updated .gitignore for webstorm, and added package-lock.json commit ff87097ae66c06808000f046362c0c15b6ed1fa2 Merge: f65d2cb4266b71Author: Eric Passmore <eric.passmore@gmail.com> Date: Tue Aug 9 13:31:57 2022 -0700 Merge remote-tracking branch 'origin' into ericpassmore-working commit f65d2cbfc916081676bf7d4cf61c65ea54c90f14 Author: Eric Passmore <eric.passmore@gmail.com> Date: Mon Aug 8 20:27:55 2022 -0700 first pass instructions for integration tests commit 32a4bd40260a8d8d3debade9d24421e4fdc1e555 Merge: 9d6aa60251beabAuthor: Eric Passmore <eric.passmore@gmail.com> Date: Mon Aug 8 12:39:49 2022 -0700 Merge Updated release 3.0 Endpoints for get info and transaction commit 9d6aa60846d30f66f5e64eb6d29bb7c6f0cd35ae Author: Eric Passmore <eric.passmore@gmail.com> Date: Thu Aug 4 12:48:15 2022 -0700 fixed path for reference commit a22bdfa6f9b539f9736ac2809a33afb0c1148a28 Author: Eric Passmore <eric.passmore@gmail.com> Date: Wed Aug 3 13:09:29 2022 -0700 removed eos.io commit 704be7c65ae3bc00236e5dcac71883c8bf8ada7d Author: Eric Passmore <eric.passmore@gmail.com> Date: Wed Aug 3 13:06:57 2022 -0700 removed eos.io references
16 lines
575 B
Bash
Executable File
16 lines
575 B
Bash
Executable File
#!/bin/bash
|
|
|
|
setup_git() {
|
|
# Set the user name and email to match the API token holder
|
|
# This will make sure the git commits will have the correct photo
|
|
# and the user gets the credit for a checkin
|
|
git config --global user.email "eric.passmore@gmail.com"
|
|
git config --global user.name "ericpassmore"
|
|
git config --global push.default matching
|
|
|
|
# Get the credentials from a file
|
|
git config credential.helper "store --file=.git/credentials"
|
|
|
|
# This associates the API Key with the account
|
|
echo "https://${GITHUB_API_KEY}:@github.com" > .git/credentials
|
|
} |