Changeset f5bebab
- Timestamp:
- May 18, 2014, 5:42:14 PM (11 years ago)
- Branches:
- master, client
- Children:
- 9369254, 2516e60
- Parents:
- f301a50
- git-author:
- Alex Dehnert <adehnert@…> (05/18/14 17:42:14)
- git-committer:
- Alex Dehnert <adehnert@…> (05/18/14 17:42:14)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
r501e0d7 rf5bebab 7 7 * Database configuration 8 8 * SERVER_EMAIL 9 * SITE_URL_BASE -- for dev installs, probably "http://localhost:8006" or similar 10 * For dev installs, you'll probably want DEBUG=True 9 11 * Any other settings you want 10 12 3. Create local_settings_after.py (possibly empty) 11 4. Run "./manage.py syncdb ;./manage.py migrate" to set up the database13 4. Run "./manage.py syncdb && ./manage.py migrate" to set up the database 12 14 5. Run "./util/setup.py" to install the basic accounts (Assets, Expenses, Income, plus some common GLs) 13 15 6. Run "./util/add_accounts" to add new accounts -
remit/settings.py
rfe7e946 rf5bebab 36 36 SHORT_DATETIME_FORMAT_F = '%Y-%M-%d %H:%M' 37 37 38 from local_settings import *39 40 38 # Local time zone for this installation. Choices can be found here: 41 39 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name … … 43 41 # If running in a Windows environment this must be set to the same as your 44 42 # system time zone. 45 TIME_ZONE = 'America/ Chicago'43 TIME_ZONE = 'America/New_York' 46 44 47 45 # Language code for this installation. All choices can be found here: … … 55 53 USE_I18N = True 56 54 55 from local_settings import * 56 57 57 # Absolute path to the directory that holds media. 58 58 # Example: "/home/media/media.lawrence.com/" … … 63 63 # Examples: "http://media.lawrence.com", "http://example.com/media/" 64 64 MEDIA_URL = SITE_WEB_PATH + '/media/' 65 66 STATIC_URL = SITE_WEB_PATH + '/static/' 65 67 66 68 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a -
remit/treebeard
r92ca60e rf5bebab 1 ../django-treebeard -1.1/dist-packages/treebeard/1 ../django-treebeard/treebeard/ -
remit/urls.py
r0671644 rf5bebab 28 28 29 29 if settings.DEBUG: 30 print "In debug mode; enabling static media serving" 30 31 from django.views.static import serve 31 32 _media_url = settings.MEDIA_URL
Note: See TracChangeset
for help on using the changeset viewer.