Skip to content

Commit

Permalink
Update readme and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
katyukha committed Oct 17, 2024
1 parent 62c40fa commit 5ee95a8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 1 addition & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5ee95a8

Please sign in to comment.