Knight
Knight

Reputation: 363

How to skip demo data in Odoo instance

I'm using Odoo on ubuntu server, I want to skip the demo data, I tried the following way, but it does'nt help me out.

 --without-demo=True

Then I deleted the demo xml files in __openerp__.py for CRM module, but there is still demo data in customers field.

Is there any other potential way to skip the demo data.

Any input would be appreciated.

Upvotes: 2

Views: 7939

Answers (3)

Yacine Bs
Yacine Bs

Reputation: 312

when you create a new databdon't check ase in 127.0.0.1:8069/web/database/selector don't check the box " Load demonstration data " enter image description here

Upvotes: 1

Knight
Knight

Reputation: 363

Small modification to your answer works :-)

      --without-demo=ALL

Upvotes: 0

ChesuCR
ChesuCR

Reputation: 9670

Use this parameter

--without-demo=all

Take into account that it requires the parameters -d (database) and -i (modules to install)

Upvotes: 6

Related Questions