summaryrefslogtreecommitdiffstats
path: root/funcweb/README.txt
blob: 4c52dcd455979c0c17853f6f3fbae9e39d016ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
=======

    # 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
=======
Luke Macken <lmacken@redhat.com>