Skip to content

Commit

Permalink
Remove commented-out portions of static settings. (see #673)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnga committed Jan 24, 2018
1 parent b392484 commit 6fff995
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions gobotany/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,21 +210,14 @@
'registration': 'registration.south_migrations',
}


# Static files (CSS, JavaScript, images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

STATIC_ROOT = '' # os.path.join(BASE_DIR, 'staticfiles')
STATIC_ROOT = ''
STATIC_URL = '/static/'

# Extra places for collectstatic to find static files
STATICFILES_DIRS = (
os.path.join(THIS_DIRECTORY, 'static'), # BASE_DIR, 'static'),
os.path.join(THIS_DIRECTORY, 'static'),
)


# https://docs.djangoproject.com/en/dev/topics/i18n/timezones/#time-zones-faq
TIME_ZONE = 'America/New_York'
USE_TZ = True
Expand Down

0 comments on commit 6fff995

Please sign in to comment.