initial Pylons code (fixes #3)
git-svn-id: file:///var/www/wwwusers/usr01/svn/pyalchemybiz/trunk@5 389c73d4-bf09-4d3d-a15e-f94a37d0667a
This commit is contained in:
parent
38d4c952cf
commit
554276ed23
42 changed files with 930 additions and 47 deletions
10
pyalchemybiz.egg-info/PKG-INFO
Normal file
10
pyalchemybiz.egg-info/PKG-INFO
Normal file
|
@ -0,0 +1,10 @@
|
|||
Metadata-Version: 1.0
|
||||
Name: pyalchemybiz
|
||||
Version: 0.0.0dev
|
||||
Summary: UNKNOWN
|
||||
Home-page: UNKNOWN
|
||||
Author: UNKNOWN
|
||||
Author-email: UNKNOWN
|
||||
License: UNKNOWN
|
||||
Description: UNKNOWN
|
||||
Platform: UNKNOWN
|
29
pyalchemybiz.egg-info/SOURCES.txt
Normal file
29
pyalchemybiz.egg-info/SOURCES.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
MANIFEST.in
|
||||
README.txt
|
||||
setup.cfg
|
||||
setup.py
|
||||
pyalchemybiz/__init__.py
|
||||
pyalchemybiz/websetup.py
|
||||
pyalchemybiz.egg-info/PKG-INFO
|
||||
pyalchemybiz.egg-info/SOURCES.txt
|
||||
pyalchemybiz.egg-info/dependency_links.txt
|
||||
pyalchemybiz.egg-info/entry_points.txt
|
||||
pyalchemybiz.egg-info/paste_deploy_config.ini_tmpl
|
||||
pyalchemybiz.egg-info/requires.txt
|
||||
pyalchemybiz.egg-info/top_level.txt
|
||||
pyalchemybiz/config/__init__.py
|
||||
pyalchemybiz/config/environment.py
|
||||
pyalchemybiz/config/middleware.py
|
||||
pyalchemybiz/config/routing.py
|
||||
pyalchemybiz/controllers/__init__.py
|
||||
pyalchemybiz/controllers/error.py
|
||||
pyalchemybiz/controllers/template.py
|
||||
pyalchemybiz/lib/__init__.py
|
||||
pyalchemybiz/lib/app_globals.py
|
||||
pyalchemybiz/lib/base.py
|
||||
pyalchemybiz/lib/helpers.py
|
||||
pyalchemybiz/model/__init__.py
|
||||
pyalchemybiz/public/index.html
|
||||
pyalchemybiz/tests/__init__.py
|
||||
pyalchemybiz/tests/test_models.py
|
||||
pyalchemybiz/tests/functional/__init__.py
|
1
pyalchemybiz.egg-info/dependency_links.txt
Normal file
1
pyalchemybiz.egg-info/dependency_links.txt
Normal file
|
@ -0,0 +1 @@
|
|||
|
7
pyalchemybiz.egg-info/entry_points.txt
Normal file
7
pyalchemybiz.egg-info/entry_points.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
|
||||
[paste.app_factory]
|
||||
main = pyalchemybiz.config.middleware:make_app
|
||||
|
||||
[paste.app_install]
|
||||
main = pylons.util:PylonsInstaller
|
||||
|
64
pyalchemybiz.egg-info/paste_deploy_config.ini_tmpl
Normal file
64
pyalchemybiz.egg-info/paste_deploy_config.ini_tmpl
Normal file
|
@ -0,0 +1,64 @@
|
|||
#
|
||||
# pyalchemybiz - Pylons configuration
|
||||
#
|
||||
# The %(here)s variable will be replaced with the parent directory of this file
|
||||
#
|
||||
[DEFAULT]
|
||||
debug = true
|
||||
email_to = you@yourdomain.com
|
||||
smtp_server = localhost
|
||||
error_email_from = paste@localhost
|
||||
|
||||
[server:main]
|
||||
use = egg:Paste#http
|
||||
host = 0.0.0.0
|
||||
port = 5000
|
||||
|
||||
[app:main]
|
||||
use = egg:pyalchemybiz
|
||||
full_stack = true
|
||||
cache_dir = %(here)s/data
|
||||
beaker.session.key = pyalchemybiz
|
||||
beaker.session.secret = ${app_instance_secret}
|
||||
app_instance_uuid = ${app_instance_uuid}
|
||||
|
||||
# If you'd like to fine-tune the individual locations of the cache data dirs
|
||||
# for the Cache data, or the Session saves, un-comment the desired settings
|
||||
# here:
|
||||
#beaker.cache.data_dir = %(here)s/data/cache
|
||||
#beaker.session.data_dir = %(here)s/data/sessions
|
||||
|
||||
# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
|
||||
# Debug mode will enable the interactive debugging tool, allowing ANYONE to
|
||||
# execute malicious code after an exception is raised.
|
||||
set debug = false
|
||||
|
||||
# Specify the database for SQLAlchemy to use.
|
||||
# %(here)s may include a ':' character on Windows environments; this can
|
||||
# invalidate the URI when specifying a SQLite db via path name
|
||||
#sqlalchemy.default.url = sqlite:///%(here)s/pyalchemybiz.db
|
||||
#sqlalchemy.default.echo = false
|
||||
|
||||
|
||||
# Logging configuration
|
||||
[loggers]
|
||||
keys = root
|
||||
|
||||
[handlers]
|
||||
keys = console
|
||||
|
||||
[formatters]
|
||||
keys = generic
|
||||
|
||||
[logger_root]
|
||||
level = INFO
|
||||
handlers = console
|
||||
|
||||
[handler_console]
|
||||
class = StreamHandler
|
||||
args = (sys.stderr,)
|
||||
level = NOTSET
|
||||
formatter = generic
|
||||
|
||||
[formatter_generic]
|
||||
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s
|
2
pyalchemybiz.egg-info/paster_plugins.txt
Normal file
2
pyalchemybiz.egg-info/paster_plugins.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Pylons
|
||||
WebHelpers
|
1
pyalchemybiz.egg-info/requires.txt
Normal file
1
pyalchemybiz.egg-info/requires.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Pylons>=0.9.6.2
|
1
pyalchemybiz.egg-info/top_level.txt
Normal file
1
pyalchemybiz.egg-info/top_level.txt
Normal file
|
@ -0,0 +1 @@
|
|||
pyalchemybiz
|
Loading…
Add table
Add a link
Reference in a new issue