1#!/usr/local/bin/python3.8
2
3# set server timezone in UTC before time module imported
4__import__('os').environ['TZ'] = 'UTC'
5import odoo
6
7if __name__ == "__main__":
8    odoo.cli.main()
9