~unifield-team/unifield-web/web_aio_24

« back to all changes in this revision

Viewing changes to doc/README.txt

  • Committer: Amit Mendapara
  • Date: 2010-09-15 17:46:36 UTC
  • Revision ID: mendapara.amit@gmail.com-20100915174636-buuy20mo0jjoodgy
[FIX] package name issues (bug #628835)

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
for OpenERP Web. In that case, just download the source package and do the
45
45
following::
46
46
 
47
 
    $ cd /path/to/openobject-web/lib
 
47
    $ cd /path/to/openerp-web/lib
48
48
    $ ./populate.sh
49
49
    $ cd ..
50
50
 
237
237
    import openobject
238
238
 
239
239
    server = make_server('localhost', 8080, openobject.application)
240
 
    openobject.configure(as_dict('openobject-web.cfg'))
 
240
    openobject.configure(as_dict('openerp-web.cfg'))
241
241
    openobject.enable_static_paths() # serve static file via the wsgi server
242
242
    server.serve_forever()
243
243