Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve readme instructions issue#35 #64

Merged
merged 28 commits into from
Mar 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
084c041
#31 Broken code with notes in comments
Cleop Feb 26, 2018
5dc3126
#31 Comments out JC tutorial, adds config
Cleop Feb 27, 2018
c080be2
update "What?" section of readme to reflect change in focus *away* fr…
nelsonic Mar 7, 2018
139da86
adds badges to readme see: https://github.com/dwyl/repo-badges
nelsonic Mar 7, 2018
3d735a8
emphasise links to tutorials for stack
nelsonic Mar 7, 2018
2d47bb4
Merge branch 'master' into improve-readme-instructions-issue#35
nelsonic Mar 7, 2018
2249ab7
Merge branch 'master' into improve-readme-instructions-issue#35
nelsonic Mar 9, 2018
9a6b684
adds .env_sample file with required environmnet variables + instructi…
nelsonic Mar 10, 2018
2862975
adds link to https://github.com/dwyl/learn-ngrok in readme. (fills ga…
nelsonic Mar 11, 2018
4f2741e
adds numbering for steps in creating a new github application for #35
nelsonic Mar 11, 2018
d05bc69
adds APP_HOST to .env_sample for #80 #77 #14
nelsonic Mar 12, 2018
cc286fc
adds GITHUB_APP_NAME to both Readme env var list and .env_sample file…
nelsonic Mar 12, 2018
18b98c1
Merge branch 'improve-readme-instructions-issue#35' of github.com:dwy…
nelsonic Mar 22, 2018
0fc2a5d
Merge branch 'master' into improve-readme-instructions-issue#35
nelsonic Mar 23, 2018
5adab8b
adds link to https://github.com/dwyl/learn-ngrok
nelsonic Mar 23, 2018
a70b258
Merge branch 'improve-readme-instructions-issue#35' of github.com:dwy…
nelsonic Mar 23, 2018
97a2bdd
adds keytoenvar.sh script to add PRIVATE_KEY (RSA Private Key) enviro…
nelsonic Mar 23, 2018
f8bb513
adds "*.pem" to .gitignore to ensure RSA Private Keys are not committ…
nelsonic Mar 23, 2018
528aacd
[WiP] adds instructions to export PRIVATE_KEY (RSA Key) environment v…
nelsonic Mar 23, 2018
a1a7d27
adds AWS/S3 environment varialbes to list of required & .env_sample f…
nelsonic Mar 24, 2018
e403e3f
fix failing test :four_leaf_clover:
nelsonic Mar 25, 2018
d4ee53b
add fields to package.json to address NPM warnings. fix https://githu…
nelsonic Mar 25, 2018
a81aa97
adds updated screenshots of running ngrok and homepage in browser #35
nelsonic Mar 25, 2018
1651955
simplify instructions for adding private key to .env file see https:/…
nelsonic Mar 26, 2018
c11173f
update instructions in .env-sample for PRIVATE_KEY
nelsonic Mar 26, 2018
7b58a33
adds screenshots for enabling the app on GitHub for #35
nelsonic Mar 26, 2018
0c94ae7
adds screenshots of issue data in local PostgreSQL to confirm app wor…
nelsonic Mar 26, 2018
1046356
fix typos noted by @Cleop in https://github.com/dwyl/github-backup/pu…
nelsonic Mar 27, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .env_sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# APP_HOST is the host of your app, if you deploy the app change to your domain.
export APP_HOST=localhost

# GITHUB_APP_ID is found in settings of your GitHub app under General > About
export GITHUB_APP_ID=YOUR_GITHUB_APP_ID

# GITHUB_APP_NAME what you called your app.
export GITHUB_APP_NAME=NAME_OF_THE_GITHUB_APP

# SECRET_KEY_BASE is required for Auth Cookie:
export SECRET_KEY_BASE=run:mix_phx.gen.secret-in-terminal-and-paste-result-here

# AWS:
export AWS_ACCESS_KEY_ID=aws-access-key-id
export AWS_SECRET_ACCESS_KEY=super-secret-key
export S3_BUCKET_NAME=your-bucket-name

# PRIVATE_KEY should be generated in your GitHub App settings
# please see instructions in README for how to add it to .env file
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ npm-debug.log
/config/*.secret.exs
.env
cover
*.pem
Loading