Skip to content

Commit b67378e

Browse files
authored
Merge pull request #4 from psu-stewardship/APPINT-2766/updateDocs
APPINT-2766
2 parents 65cf21c + a4f47de commit b67378e

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,22 @@ Common methods used by etda_workflow and etda_explore
66

77
## Installation
88

9-
Add this line to your application's Gemfile:
9+
This Gem isn't published, so you'll have to install it straight from GitHub, you will also need to have access to this project via ssh, or auth token to install
10+
11+
To install via git, add this line to your applications's Gemfile:
12+
13+
```ruby
14+
gem 'etda_utilities', branch: 'master', git: "git@github.com:psu-stewardship/etda_utilities.git"
15+
```
16+
17+
To install via a personal access token (for non-human, or shared access)
18+
* generate a personal access token and give it the "repo" scope (https://github.com/settings/tokens/new)
19+
* export that token as the `ETDA_UTILITIES_TOKEN` environment variable
20+
21+
Then, add the following line to your application's Gemfile:
1022

1123
```ruby
12-
gem 'etda_utilities'
24+
gem 'etda_utilities', branch: 'master', git: "https://#{ENV['ETDA_UTILITIES_TOKEN']}@github.com/psu-stewardship/etda_utilities.git"
1325
```
1426

1527
And then execute:

0 commit comments

Comments
 (0)