From 5ee95a8d027b6e81be6ea70bfe84a2bf826b6d4e Mon Sep 17 00:00:00 2001 From: Dmytro Katyukha Date: Thu, 17 Oct 2024 17:54:17 +0300 Subject: [PATCH] Update readme and changelog --- CHANGELOG.md | 7 +------ README.md | 7 ++++++- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f90ce9ca..409fee23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,7 @@ ### Added -- New command `odood odoo run` that allows to run Odoo itself. -- New command `odood deploy` that could be used to deploy production-ready Odoo instance. +- New experimental command `odood deploy` that could be used to deploy production-ready Odoo instance. - Added experimental support for Odoo 18 ### Changed @@ -27,10 +26,6 @@ - Added new option `--ignore-running` that allows to ignore server running. - Removed option `--detach` as it does not have sense. Use `odood server start` instead. -### Removed - -- Removed command `odood odoo run`. Use `odood server run` instead. - --- ## Release 0.1.0 (2024-08-15) diff --git a/README.md b/README.md index 786f15e2..cf3e9898 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ project with Odood is to run command `odood discover odoo-helper` somewhere insi ## Quick start -Use following command to create new local odoo instance: +Use following command to create new local (development) odoo instance: ```bash odood init -v 17 -i odoo-17.0 --db-user=odoo17 --db-password=odoo --http-port=17069 --create-db-user @@ -78,6 +78,11 @@ odood init -v 17 -i odoo-17.0 --db-user=odoo17 --db-password=odoo --http-port=17 This command will create new virtual environment for Odoo and install odoo there. Also, this command will automatically create database user for this Odoo instance. +For production installations, you can use command `odood deploy` that will +deploy Odoo of specified version to machine where this command is running. +For example: `odood deploy -v 17 --supervisor=systemd --local-postgres --enable-logrotate` +But this command is still experimental. + Next, change current working directory to directory where we installed Odoo: ```bash