Installing Odoo for production
Installing Odoo in the production phase is not very different from installing Odoo for development. While there are several possible approaches, this recipe proposes a set up that is close to the development installation explained in Chapter 1, Installing the Odoo Development Environment, in the recipe Easy installation from source, and in Chapter 2, Managing Odoo Server Instances, in the recipe Standardize your instance directory layout.
Getting ready
We expect that you have a development instance ready. In this recipe, we assume the following:
- The project of your instance is managed in the same way as suggested in Chapter 2, Managing Odoo Server Instances, in the Standardize your instance directory layout recipe. We will use
https://github.com/login/project.git
. This repository should contain the configuration file of the instance used during development, the specific addons of the instance, and any helper script that you may have created in the context of...