|
|
# Instrucciones
|
|
|
|
|
|
1. Instalar zc.buildout que lo podés buscar por pip install o easy_install
|
|
|
Para esto tenés que instalar las python-setuptools
|
|
|
2. Crear un directorio que servirá como ambiente de desarrollo
|
|
|
3. Entrar y ejecutar buildout init. Eso crea varios directorios y un buildout.cfg
|
|
|
4. Leer datos de la receta en http://pythonhosted.org/anybox.recipe.openerp/
|
|
|
* Escribir bajo el apartado [openerp] las opciones para el openerp.cfg:
|
|
|
options.db_name
|
|
|
options.db_pass
|
|
|
etc.
|
|
|
5. ejecutar:
|
|
|
wget http://svn.zope.org/*checkout*/zc.buildout/trunk/bootstrap/bootstrap.py
|
|
|
6. bin/buildout -c buildout.dev.cfg
|
|
|
Esto realiza el build, que cada tanto lo tenés que tirar para actualizar todos los módulos. Sino entrás al módulo en cuestión y hacés un git pull
|
|
|
7. Para lanzar el OpenERP:
|
|
|
bin/start_openerp
|
|
|
Si le querés agregar parámetros, a continuación:
|
|
|
Por ejemplo, para actualizar un módulo:
|
|
|
|
|
|
```bash
|
|
|
bin/start_openerp -u nombre_modulo
|
|
|
bin/start_openerp --help
|
|
|
```
|
|
|
|
|
|
## Para instalar postgresql:
|
|
|
|
|
|
### Step 3. Install and configure the database server, PostgreSQL
|
|
|
|
|
|
```bash
|
|
|
sudo apt-get install postgresql
|
|
|
```
|
|
|
|
|
|
Then configure the OpenERP user on postgres:
|
|
|
|
|
|
First change to the postgres user so we have the necessary privileges to configure the database.
|
|
|
|
|
|
```bash
|
|
|
sudo su - postgres
|
|
|
```
|
|
|
|
|
|
Now create a new database user. This is so OpenERP has access rights to connect to PostgreSQL and to create and drop databases. Remember what your choice of password is here; you will need it later on:
|
|
|
|
|
|
```bash
|
|
|
createuser --createdb --username postgres --no-createrole --no-superuser --pwprompt openerp
|
|
|
Enter password for new role: ********
|
|
|
Enter it again: ********
|
|
|
```
|
|
|
|
|
|
Finally exit from the postgres user account:
|
|
|
|
|
|
exit
|
|
|
|
|
|
Fuente: http://www.theopensourcerer.com/2012/12/how-to-install-openerp-7-0-on-ubuntu-12-04-lts/ |
|
|
\ No newline at end of file |