diff --git a/server_environment_files_sample/__manifest__.py b/server_environment_files_sample/__manifest__.py index 6c2b0f6..c8b50e0 100644 --- a/server_environment_files_sample/__manifest__.py +++ b/server_environment_files_sample/__manifest__.py @@ -8,7 +8,7 @@ "depends": ["base"], "author": "Camptocamp,Odoo Community Association (OCA)", "summary": "sample config file for server_environment", - "website": "http://github.com/OCA/server-env", + "website": "https://github.com/OCA/server-env", "license": "GPL-3 or any later version", "category": "Tools", "data": [], diff --git a/server_environment_files_sample/default/base.conf b/server_environment_files_sample/default/base.conf index bf92248..badaf8c 100644 --- a/server_environment_files_sample/default/base.conf +++ b/server_environment_files_sample/default/base.conf @@ -7,4 +7,3 @@ ged_folder = /my_mounting_point/ged/ [wkhtml2pdf] lib_path = /xxx/xxx/lib/wkhtmltopdf-linux-i386-0-9-9 - diff --git a/server_environment_files_sample/default/mytopic.conf b/server_environment_files_sample/default/mytopic.conf index c896c90..b295334 100644 --- a/server_environment_files_sample/default/mytopic.conf +++ b/server_environment_files_sample/default/mytopic.conf @@ -12,4 +12,3 @@ user = toto password = my_dev_password tls = 0 port = 8074 - diff --git a/server_environment_files_sample/prod/base.conf b/server_environment_files_sample/prod/base.conf index 08d04b2..0ee236e 100644 --- a/server_environment_files_sample/prod/base.conf +++ b/server_environment_files_sample/prod/base.conf @@ -5,4 +5,4 @@ smtp_server = prod.xxx.xxx.ch ged_folder = /my_mounting_point/ged/ [wkhtml2pdf] -lib_path = /xxx/xxx/lib/wkhtmltopdf-linux-i386-0-9-9 \ No newline at end of file +lib_path = /xxx/xxx/lib/wkhtmltopdf-linux-i386-0-9-9 diff --git a/server_environment_files_sample/prod/mytopic.conf b/server_environment_files_sample/prod/mytopic.conf index 71fb81d..2c224ae 100644 --- a/server_environment_files_sample/prod/mytopic.conf +++ b/server_environment_files_sample/prod/mytopic.conf @@ -11,4 +11,4 @@ out_path= /out/ user = prod_user password = my_prod_password tls = 0 -port = 21 \ No newline at end of file +port = 21 diff --git a/server_environment_files_sample/test/mytopic.conf b/server_environment_files_sample/test/mytopic.conf index 00cfb03..d2f1f6f 100644 --- a/server_environment_files_sample/test/mytopic.conf +++ b/server_environment_files_sample/test/mytopic.conf @@ -5,5 +5,3 @@ CONSTC = -25 [external_service.ftp] user = toto password = toto - - diff --git a/setup/server_environment_files_sample/odoo/addons/server_environment_files_sample b/setup/server_environment_files_sample/odoo/addons/server_environment_files_sample new file mode 120000 index 0000000..30af6f6 --- /dev/null +++ b/setup/server_environment_files_sample/odoo/addons/server_environment_files_sample @@ -0,0 +1 @@ +../../../../server_environment_files_sample \ No newline at end of file diff --git a/setup/server_environment_files_sample/setup.py b/setup/server_environment_files_sample/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/server_environment_files_sample/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)