Change the default config path to use the odoo_docker.conf file

pull/539/head
CodeByKyle 2025-02-10 21:07:44 -05:00
parent 899adb9c4a
commit 0a728d93fe
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class DatabaseConnectionError(Exception):
pass
if __name__ == '__main__':
default_config_path = os.getenv('ODOO_RC', '/etc/odoo/odoo.conf')
default_config_path = os.getenv('ODOO_RC', '/etc/odoo/odoo_docker.conf')
arg_parser = argparse.ArgumentParser()
arg_parser.add_argument('--config', type=str, default=default_config_path)