ups, missed the toplevel dir

This commit is contained in:
j 2007-03-20 15:53:06 +00:00
parent cf7248c95d
commit 6d8c3a0744
2 changed files with 9 additions and 23 deletions

21
dev.cfg
View File

@ -5,29 +5,12 @@
# oilarchive/config/app.cfg
# DATABASE
# pick the form for your database
# sqlobject.dburi="postgres://username@hostname/databasename"
# sqlobject.dburi="mysql://username:password@hostname:port/databasename"
# sqlobject.dburi="sqlite:///file_name_and_path"
# If you have sqlite, here's a simple default to get you started
# in development
sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
# if you are using a database or table type without transactions
# (MySQL default, for example), you should turn off transactions
# by prepending notrans_ on the uri
# sqlobject.dburi="notrans_mysql://username:password@hostname:port/databasename"
# for Windows users, sqlite URIs look like:
# sqlobject.dburi="sqlite:///drive_letter:/path/to/file"
sqlobject.dburi="notrans_mysql://root@localhost/oil"
# SERVER
# Some server parameters that you may want to tweak
# server.socket_port=8080
server.socket_port=2323
# Enable the debug output at the end on pages.
# log_debug_info_filter.on = False

View File

@ -1,3 +1,6 @@
# -*- Mode: Python; -*-
# -*- coding: utf-8 -*-
# vi:si:et:sw=2:sts=2:ts=2
from setuptools import setup, find_packages
from turbogears.finddata import find_package_data
@ -9,10 +12,10 @@ setup(
version=version,
# uncomment the following lines if you fill them out in release.py
#description=description,
#author=author,
#author_email=email,
#url=url,
description=description,
author=author,
author_email=email,
url=url,
#download_url=download_url,
#license=license,