Skip to content

Commit

Permalink
Instruct user to specify where to store photos, add config flags to c…
Browse files Browse the repository at this point in the history
…onfig example
  • Loading branch information
bertrandom committed Apr 11, 2012
1 parent 33b8c67 commit a9ca2f7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions INSTALL.md
Expand Up @@ -56,6 +56,11 @@ The basics

$GLOBALS['cfg']['enable_feature_backups'] = 1;
$GLOBALS['cfg']['enable_feature_backups_registration'] = 1;

# This is where your Instagram photos will be stored
# It should have a trailing slash e.g. /usr/local/parallelogram-static/

$GLOBALS['cfg']['instagram_static_path'] = ''

Limiting access (invite codes and "god" auth)
===
Expand Down
16 changes: 16 additions & 0 deletions www/include/config.php.example
Expand Up @@ -13,6 +13,17 @@

# Things you'll need to tweak

# You will need valid Instagram OAuth credentials
# See also: http://instagram.com/developer/client/register/

$GLOBALS['cfg']['instagram_oauth_key'] = '';
$GLOBALS['cfg']['instagram_oauth_secret'] = '';

# Don't change this (but if you do be sure to update the main
# .htaccess file accordingly).

$GLOBALS['cfg']['instagram_oauth_callback'] = 'auth/';

# Setting up the database
# See also: https://github.com/straup/flamework-tools/blob/master/bin/setup-db.sh

Expand Down Expand Up @@ -42,6 +53,11 @@
$GLOBALS['cfg']['enable_feature_backups'] = 1;
$GLOBALS['cfg']['enable_feature_backups_registration'] = 1;

# This is where your Instagram photos will be stored
# It should have a trailing slash e.g. /usr/local/parallelogram-static/

$GLOBALS['cfg']['instagram_static_path'] = ''

# Invite codes – these are used to limit who can register
# to have their photos backed up. You'll need to do a
# few things to enable this:
Expand Down

0 comments on commit a9ca2f7

Please sign in to comment.