VT2020-NearbyComm-Demo: Difference between revisions

From air
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:


== Installation ==
= Installation =

== Installer Go ==


Il faut tout d'abord installer l'environnement Go si vous ne l'avez pas déjà. Vous pouvez le télécharger [[https://golang.org/dl/go1.15.6.linux-amd64.tar.gz ici]]
Il faut tout d'abord installer l'environnement Go si vous ne l'avez pas déjà. Vous pouvez le télécharger [[https://golang.org/dl/go1.15.6.linux-amd64.tar.gz ici]]
Line 20: Line 22:
'''3. Vérifier l'installation'''
'''3. Vérifier l'installation'''
<syntaxhighlight lang="shell">
<syntaxhighlight lang="shell">
Go version
go version
</syntaxhighlight>


== Récupérer l'image Docker du Web UI ==

<syntaxhighlight lang="shell">
docker run -it -p 3303:3303 flogo/flogo-docker:latest eula-accept
</syntaxhighlight>
</syntaxhighlight>

Revision as of 10:24, 14 December 2020

Installation

Installer Go

Il faut tout d'abord installer l'environnement Go si vous ne l'avez pas déjà. Vous pouvez le télécharger [ici]

Ensuite il faut installer l'environnement, pour cela il faut :

1. Extraire l'archive

tar -C /usr/local -xzf go1.15.6.linux-amd64.tar.gz

2. Ajouter /usr/local/go/bin à votre variable d'environnement PATH

export PATH=$PATH:/usr/local/go/bin

3. Vérifier l'installation

go version


Récupérer l'image Docker du Web UI

docker run -it -p 3303:3303 flogo/flogo-docker:latest eula-accept