Skip to content

Commit

Permalink
settings changed... .hgignore add for dev.db
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Lauber committed Sep 28, 2009
1 parent 41c1543 commit b63fc32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .hgignore
Expand Up @@ -7,4 +7,6 @@ syntax: glob
*.DS_Store *.DS_Store
.* .*
cms/media/cms_page_media/ cms/media/cms_page_media/
cms/docs/build cms/docs/build
syntax: regexp
^example/dev\.db$
8 changes: 4 additions & 4 deletions example/settings.py
Expand Up @@ -13,10 +13,10 @@


MANAGERS = ADMINS MANAGERS = ADMINS


DATABASE_ENGINE = 'mysql'#'postgresql_psycopg2' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. DATABASE_ENGINE = 'sqlite3'#'postgresql_psycopg2' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASE_NAME = 'cms' # Or path to database file if using sqlite3. DATABASE_NAME = 'dev.db' # Or path to database file if using sqlite3.
DATABASE_USER = 'cms' # Not used with sqlite3. DATABASE_USER = '' # Not used with sqlite3.
DATABASE_PASSWORD = 'cms' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3.
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.


Expand Down

0 comments on commit b63fc32

Please sign in to comment.