From 169fc5e750b143432c641f85db4a492d1433f92b Mon Sep 17 00:00:00 2001 From: Luke Macken Date: Wed, 20 Feb 2008 10:46:37 -0500 Subject: More funcweb README modifications --- funcweb/README | 31 +++++++++++++++++++++++++++++++ funcweb/README.txt | 36 ------------------------------------ 2 files changed, 31 insertions(+), 36 deletions(-) create mode 100644 funcweb/README delete mode 100644 funcweb/README.txt (limited to 'funcweb') diff --git a/funcweb/README b/funcweb/README new file mode 100644 index 0000000..5acab13 --- /dev/null +++ b/funcweb/README @@ -0,0 +1,31 @@ +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. + + 2) Install the necessary software + + # yum install TurboGears python-genshi + + 3) Setup and run funcweb + + $ python setup.py egg_info + $ ./start-funcweb.py + + 4) Use funcweb + + Connect to http://localhost:8080 + +Authors +======= +Luke Macken diff --git a/funcweb/README.txt b/funcweb/README.txt deleted file mode 100644 index 9134beb..0000000 --- a/funcweb/README.txt +++ /dev/null @@ -1,36 +0,0 @@ -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 -- cgit