Reputation: 4203
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. 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
Reputation: 193
--debug
to your command to get debug debug infosor
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
Reputation: 127
I think I had this problem and needed to install node js, and npm less
Upvotes: 0