ups, missed the toplevel dir
This commit is contained in:
parent
cf7248c95d
commit
6d8c3a0744
2 changed files with 9 additions and 23 deletions
21
dev.cfg
21
dev.cfg
|
@ -5,29 +5,12 @@
|
||||||
# oilarchive/config/app.cfg
|
# oilarchive/config/app.cfg
|
||||||
|
|
||||||
# DATABASE
|
# DATABASE
|
||||||
|
sqlobject.dburi="notrans_mysql://root@localhost/oil"
|
||||||
# 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"
|
|
||||||
|
|
||||||
# SERVER
|
# SERVER
|
||||||
|
|
||||||
# Some server parameters that you may want to tweak
|
# 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.
|
# Enable the debug output at the end on pages.
|
||||||
# log_debug_info_filter.on = False
|
# log_debug_info_filter.on = False
|
||||||
|
|
11
setup.py
11
setup.py
|
@ -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 setuptools import setup, find_packages
|
||||||
from turbogears.finddata import find_package_data
|
from turbogears.finddata import find_package_data
|
||||||
|
|
||||||
|
@ -9,10 +12,10 @@ setup(
|
||||||
version=version,
|
version=version,
|
||||||
|
|
||||||
# uncomment the following lines if you fill them out in release.py
|
# uncomment the following lines if you fill them out in release.py
|
||||||
#description=description,
|
description=description,
|
||||||
#author=author,
|
author=author,
|
||||||
#author_email=email,
|
author_email=email,
|
||||||
#url=url,
|
url=url,
|
||||||
#download_url=download_url,
|
#download_url=download_url,
|
||||||
#license=license,
|
#license=license,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue