Add general system update and Imagemagick for Ubuntu

This commit is contained in:
voodoorai2000
2019-04-11 12:07:51 +02:00
parent ffcc413e86
commit 57c8d6a218
2 changed files with 32 additions and 0 deletions

View File

@@ -1,5 +1,13 @@
## Configuration for development and test environments (Ubuntu 18.04)
## Actualización de sistema
Ejecute una actualización general de las librerías de sistema:
```bash
sudo apt update
```
## Git
Git is officially maintained in Ubuntu:
@@ -79,6 +87,14 @@ You also need to configure a user for your database. As an example, we'll choose
sudo -u postgres createuser consul --createdb --superuser --pwprompt
```
## Imagemagick
Install Imagemagick:
```bash
sudo apt install imagemagick
```
## ChromeDriver
To run E2E integration tests, we use Selenium along with Headless Chrome.

View File

@@ -1,5 +1,13 @@
## Configuración para los entornos de desarrollo y pruebas (Ubuntu 18.04)
## Actualización de sistema
Ejecuta una actualización general de las librerías de sistema:
```bash
sudo apt update
```
## Git
Git es mantenido oficialmente en Ubuntu:
@@ -79,6 +87,14 @@ Para el correcto funcionamiento de CONSUL, necesitas confgurar un usuario para t
sudo -u postgres createuser consul --createdb --superuser --pwprompt
```
## Imagemagick
Instala Imagemagick:
```bash
sudo apt install imagemagick
```
## ChromeDriver
Para realizar pruebas de integración, usamos Selenium junto a Headless Chrome.