Vladimir Venegas
Vladimir Venegas

Reputation: 4203

How run Odoo 9.0 from source code in Windows 10

i want to run odoo 9.0 directly from source code in windows 10. I done this:

1.- I downloaded source code from [GitHub][1]
2.- I already installed all system requirements (Python 2.7, Node.js, etc)
3.- I already have an postgresql database in AWS (RDS)

My problem is when i run odoo.py and i open this url (http://localhost:8069/web/), it show me an empty screen. Odoo empty Here is my startup code:

Python odoo.py --db_host VALID-URL.us-east-1.rds.amazonaws.com -r USERNAME -w PASSWORD -d DATABASENAME --addons-path=addons

¿What i am doing wrong?

Upvotes: 0

Views: 1789

Answers (2)

aziz aziz
aziz aziz

Reputation: 193

  • just add the option --debug to your command to get debug debug infos

or

  • you will find a file named odoo.conf (v9 -> v11) or openerp-server.conf (v7 or less)

    search for debug_mode = false and set them to true.

Upvotes: 1

Nross2781
Nross2781

Reputation: 127

I think I had this problem and needed to install node js, and npm less

Upvotes: 0

Related Questions