Skip to content

JustSaying Installation

payman81 edited this page Aug 25, 2014 · 3 revisions

To get Just saying, you can

Credentials

JustSaying supports IAM Roles, therefore, you can deploy your application to an EC2 instance without having to manage credentials directly. However, on any machine other than EC2 you will need to provide AWS credentials in one of following ways:

  • Add AWS_ACCESS_KEY and AWS_SECRET_KEY to the environment variables
  • Add AWS_ACCESS_KEY and AWS_SECRET_KEY to your App.Config or Web.Config
<configuration>
  <appSettings>
    <add key="AWSAccessKey" value="****"/>
    <add key="AWSSecretKey" value="********"/>
  </appSettings>
</configuration>
<configuration>
  <appSettings>
    <add key="AWSProfileName" value="development"/>
  </appSettings>
</configuration>

Compiling in Visual Studio

We have compiled and tested JustSaying using Visual Studio 2013 and .Net 4.0. If you're experiencing problems trying to compile or run JustSaying using other version of Visual Studio then please report an issue.