28 lines
700 B
Markdown
28 lines
700 B
Markdown
# Aartha Labs Odoo 17
|
|
|
|
Local Odoo 17 environment with PostgreSQL and a mounted custom theme module.
|
|
|
|
## Start
|
|
|
|
```powershell
|
|
docker compose up -d
|
|
```
|
|
|
|
Open <http://localhost:8069>, create a database, then enable developer mode.
|
|
Open **Apps**, select **Update Apps List**, remove the default Apps filter, and
|
|
install **Aartha Labs Website Theme**.
|
|
|
|
Theme files are under `addons/theme_aarthalabs`. The main stylesheet is
|
|
`static/src/scss/theme.scss`.
|
|
|
|
## Useful commands
|
|
|
|
```powershell
|
|
docker compose logs -f odoo
|
|
docker compose stop
|
|
docker compose down
|
|
```
|
|
|
|
`docker compose down` preserves the named database and Odoo volumes. Add `-v`
|
|
only when you intentionally want to delete all local Odoo data.
|