summaryrefslogtreecommitdiffstats
path: root/funcweb/README.txt
blob: 9134beb23de51637e3e9a7c4fd414eda8411286d (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
33
34
35
36
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 <lmacken@redhat.com>