├── .openshift ├── README.md ├── action_hooks │ ├── README.md │ ├── build │ └── deploy ├── cron │ ├── README.cron │ ├── daily │ │ └── .gitignore │ ├── hourly │ │ └── .gitignore │ ├── minutely │ │ └── .gitignore │ ├── monthly │ │ └── .gitignore │ └── weekly │ │ ├── README │ │ ├── chrono.dat │ │ ├── chronograph │ │ ├── jobs.allow │ │ └── jobs.deny └── markers │ └── README.md ├── README.md ├── addons └── README.txt ├── odoo-conf.template ├── odoo.conf ├── package.json ├── requirements.txt ├── setup.py └── wsgi.py /.openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/.openshift/README.md -------------------------------------------------------------------------------- /.openshift/action_hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/.openshift/action_hooks/README.md -------------------------------------------------------------------------------- /.openshift/action_hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/.openshift/action_hooks/build -------------------------------------------------------------------------------- /.openshift/action_hooks/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/.openshift/action_hooks/deploy -------------------------------------------------------------------------------- /.openshift/cron/README.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/.openshift/cron/README.cron -------------------------------------------------------------------------------- /.openshift/cron/daily/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/hourly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/minutely/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/monthly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/.openshift/cron/weekly/README -------------------------------------------------------------------------------- /.openshift/cron/weekly/chrono.dat: -------------------------------------------------------------------------------- 1 | Time And Relative D...n In Execution (Open)Shift! 2 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/chronograph: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "`date`: `cat $(dirname \"$0\")/chrono.dat`" 4 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/jobs.allow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/.openshift/cron/weekly/jobs.allow -------------------------------------------------------------------------------- /.openshift/cron/weekly/jobs.deny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/.openshift/cron/weekly/jobs.deny -------------------------------------------------------------------------------- /.openshift/markers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/.openshift/markers/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/README.md -------------------------------------------------------------------------------- /addons/README.txt: -------------------------------------------------------------------------------- 1 | Place here you custom modules 2 | -------------------------------------------------------------------------------- /odoo-conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/odoo-conf.template -------------------------------------------------------------------------------- /odoo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/odoo.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/setup.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreispt/openshift-odoo-quickstart/HEAD/wsgi.py --------------------------------------------------------------------------------