diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0a5557f..6712464 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+### Added
+- added SFTP links to support [#3](https://github.com/OSC/frame-renderer/issues/3)
## [0.1.1] - 2019-09-26
### Fixed
diff --git a/README.md b/README.md
index 81a356c..8cb4f5c 100644
--- a/README.md
+++ b/README.md
@@ -192,7 +192,18 @@ execute the yum install command.
`sudo yum install ondemand-frame-renderer`
-## Custom Initializers
+### Customizing the install
+
+### Env file
+
+Create the file `/etc/ood/config/apps/frame-renderer/env` and add these entries.
+
+```bash
+# the sftp host your users can connect to to upload and download their project files.
+SFTP_HOST=my-host.net
+```
+
+### Initializers
Create the file `/etc/ood/config/apps/frame-renderer/config/initializers/site_cluster_overrides.rb`
and populate it with the ruby class definition below. Notes are given as to why you're overriding
diff --git a/app/views/projects/new.html.erb b/app/views/projects/new.html.erb
index 811e926..3fe6efc 100644
--- a/app/views/projects/new.html.erb
+++ b/app/views/projects/new.html.erb
@@ -6,6 +6,13 @@
Before making a new project here, be sure to upload the project to the servers if the files are not already there.
You can follow the directions on the README on how to do so.
+
+ <% if Configuration.sftp_host %>
+ If you already have an SFTP client installed, you can click
+ @<%= Configuration.sftp_host %><%= @project.directory %>/">here to open it.
+
+ <% end %>
+
<%= render 'form' %>
diff --git a/config/configuration_singleton.rb b/config/configuration_singleton.rb
index 8effbf1..9f4d3fc 100644
--- a/config/configuration_singleton.rb
+++ b/config/configuration_singleton.rb
@@ -83,6 +83,10 @@ def locales_root
Pathname.new(ENV['OOD_LOCALES_ROOT'] || "/etc/ood/config/locales")
end
+ def sftp_host
+ ENV['SFTP_HOST']
+ end
+
private
# The environment