Skip to content

Commit e8b8268

Browse files
Update Readme.md
Used a better handling of Markdown
1 parent 22c6afa commit e8b8268

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,36 @@ The script is based on the install script from André Schenkels (https://github.
55

66
It also follows the approach recommended in Odoo's documentation (https://www.odoo.com/documentation/9.0/setup/install.html) using pip instead of apt-get for python dependencies
77

8-
It's recommended to install this script with **elevated privileges**, so there's no need to use **sudo** to execute this procedure.
8+
> It's recommended to install this script with **elevated privileges**, so there's no need to use **sudo** to execute this procedure.
99
1010
<h3>Installation procedure</h3>
11-
1. Download the script:
12-
```bash
13-
wget https://raw.githubusercontent.com/gustavovalverde/odoo-install-scripts/master/odoo_install.sh
11+
1. Download the script
12+
```bash
13+
wget https://raw.githubusercontent.com/gustavovalverde/odoo-install-scripts/master/odoo_install.sh
14+
```
15+
16+
2. **THIS IS IMPORTANT!** Modify this variables, otherwise you might get hacked too easily
17+
```bash
18+
OE_USER="odoo"
19+
OE_VIRTENV="venv"
20+
OE_SUPERADMIN="admin"
21+
```
22+
23+
3. Modify this variables based on your needs
24+
```bash
25+
INSTALL_WKHTMLTOPDF="True"
26+
HAVE_PROXY="False"
27+
OE_PORT="8069"
28+
OE_VERSION="9.0"
29+
IS_ENTERPRISE="False"
1430
```
1531

16-
2. *THIS IS IMPORTANT!* Modify this variables, otherwise you might get hacked too easily:
17-
```bash
18-
OE_USER="odoo"
19-
OE_VIRTENV="venv"
20-
OE_SUPERADMIN="admin"
21-
```
22-
23-
3. Modify this variables based on your needs:
24-
```bash
25-
INSTALL_WKHTMLTOPDF="True"
26-
HAVE_PROXY="False"
27-
OE_PORT="8069"
28-
OE_VERSION="9.0"
29-
IS_ENTERPRISE="False"
30-
```
31-
32-
4. Make the script executable:
33-
```bash
34-
chmod +x odoo_install.sh
35-
```
32+
4. Make the script executable
33+
```bash
34+
chmod +x odoo_install.sh
35+
```
3636

3737
5. Execute the script:
38-
```bash
39-
. odoo_install.sh
40-
```
38+
```bash
39+
. odoo_install.sh
40+
```

0 commit comments

Comments
 (0)