funcweb ======= A TurboGears interface to func. This project is currently under development, and is currently just a proof-of-concept and should not be used in a production environment. Running ======= 1) Setup func. https://fedorahosted.org/func/wiki/InstallAndSetupGuide Be sure to setup a non-root user to run the func client, so you don't have to run funcweb as root. # yum install TurboGears python-genshi $ python setup.py egg_info $ tg-admin sql create $ ./start-funcweb.py Connect to http://localhost:8080 Creating a new user =================== Currently funcweb only allows connections from 127.0.0.1 and from authenticated users. So if you wish to grant other people access to your funcweb instance, you can create new users easily: $ tg-admin shell >>> user = User(user_name='name', password='password') >>> ^D Authors ======= Luke Macken