correcting note on static file hosting for dev
authorBryan <btbonval@gmail.com>
Sun, 16 Aug 2015 23:55:54 +0000 (19:55 -0400)
committerBryan <btbonval@gmail.com>
Sun, 16 Aug 2015 23:55:54 +0000 (19:55 -0400)
closes #442

.env.example
README.md

index 2156d8cba59a03e54b20a20e54873ba492395010..cc330091f1189979e40a8772fcb962a2ec282e68 100644 (file)
@@ -1,5 +1,7 @@
 DATABASE_URL='postgres://<user>:<password>@<host>:<port>/<database>'
 
+DEFAULT_FILE_STORAGE='django.core.files.storage.FileSystemStorage'
+
 #DEFAULT_FILE_STORAGE='storages.backends.s3boto.S3BotoStorage'
 #AWS_ACCESS_KEY_ID='ASCIINONSENSE'
 #AWS_SECRET_ACCESS_KEY='AlphaNumerics+OtherCharacters'
index 73fbefa41eb95c190916d3c533ed657dfd91efbc..70034ec16af1e5fdbe10555f906d85d6fc796600 100644 (file)
--- a/README.md
+++ b/README.md
@@ -363,7 +363,7 @@ environment variables `TWITTER_CONSUMER_KEY`, `TWITTER_CONSUMER_SECRET`,
 
 ## Configuring foreman
 
-KarmaNotes runs on Heroku as a webapp and thus makes use of a Procfie. While
+KarmaNotes runs on Heroku as a webapp and thus makes use of a Procfile. While
 not strictly necessary, KarmaWorld can use the same basic Procfile which is
 convenient and consistent.
 
@@ -439,8 +439,8 @@ desired.
      archives. On Debian-based systems, this entails `apt-get install p7zip-full`
 
 If using `DJANGO_SETTINGS_MODULE='karmaworld.settings.dev'` in `.env`, static
-file hosting is done by local files and completely ignores the
-`DEFAULT_FILE_STORAGE` setting in `.env`.
+file hosting should be done by local files.  `DEFAULT_FILE_STORAGE` should be
+set to `django.core.files.storage.FileSystemStorage`.
 
 If using `DJANGO_SETTINGS_MODULE='karmaworld.settings.prod'` in `.env`, static
 file hosting is done by `DEFAULT_FILE_STORAGE` defined in `.env`.