summaryrefslogtreecommitdiffstats
path: root/funcweb/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'funcweb/README.txt')
-rw-r--r--funcweb/README.txt23
1 files changed, 19 insertions, 4 deletions
diff --git a/funcweb/README.txt b/funcweb/README.txt
index 3374563..4c52dcd 100644
--- a/funcweb/README.txt
+++ b/funcweb/README.txt
@@ -3,14 +3,29 @@ funcweb
A TurboGears interface to func.
-This project is currently under development, and should not be used in an
-production environment. It employs no concept of security, and should only
-be used for testing.
+This project is currently under development, and is currently just a
+proof-of-concept and should not be used in a production environment.
Running
=======
- # ./start-funcweb.py
+ # yum install TurboGears python-genshi python-elixir
+ $ 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
=======