Ignore:
Timestamp:
Jan 5, 2010, 4:53:12 AM (17 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, client
Children:
7874f6a
Parents:
719e4bb
git-author:
Alex Dehnert <adehnert@…> (01/05/10 04:53:12)
git-committer:
Alex Dehnert <adehnert@…> (01/05/10 04:53:12)
Message:

Bunch of work on the accounting system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • treasury/settings.py

    r719e4bb r13a23ce  
    11# Django settings for treasury project.
     2import os
     3
     4APP_ROOT = os.path.dirname(__file__)
     5DEFAULT_DOMAIN = 'mit.edu'
    26
    37DEBUG = True
     
    59
    610ADMINS = (
    7     # ('Your Name', 'your_email@domain.com'),
     11    ('Alex Dehnert', 'adehnert@mit.edu'),
    812)
    913
    1014MANAGERS = ADMINS
    1115
    12 DATABASE_ENGINE = ''           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    13 DATABASE_NAME = ''             # Or path to database file if using sqlite3.
     16DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
     17DATABASE_NAME = 'treasury.sqlite'             # Or path to database file if using sqlite3.
    1418DATABASE_USER = ''             # Not used with sqlite3.
    1519DATABASE_PASSWORD = ''         # Not used with sqlite3.
     
    7074    # Always use forward slashes, even on Windows.
    7175    # Don't forget to use absolute paths, not relative paths.
     76    APP_ROOT + '/templates/',
    7277)
    7378
    7479INSTALLED_APPS = (
     80    'django.contrib.admin',
     81    'django.contrib.admindocs',
    7582    'django.contrib.auth',
    7683    'django.contrib.contenttypes',
    7784    'django.contrib.sessions',
    7885    'django.contrib.sites',
     86    'treebeard',
     87    'vouchers',
    7988)
Note: See TracChangeset for help on using the changeset viewer.