VT2020-NearbyComm-Demo: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Manon.Chaix1 (talk | contribs) No edit summary |
||
(19 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
Lien git pour une application de Chat utilisant Nearby Messages API : https://github.com/ulternate/nearby-chat |
|||
Vidéo montrant l'application : https://drive.google.com/file/d/1CB_L_wKSVIk0AuYujakStH6UFhcHK8Te/view?usp=sharing |
|||
= 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]] |
|||
Ensuite il faut installer l'environnement, pour cela il faut : |
|||
'''1. Extraire l'archive''' |
|||
<syntaxhighlight lang="shell"> |
|||
tar -C /usr/local -xzf go1.15.6.linux-amd64.tar.gz |
|||
</syntaxhighlight> |
|||
'''2. Ajouter /usr/local/go/bin à votre variable d'environnement PATH''' |
|||
<syntaxhighlight lang="shell"> |
|||
export PATH=$PATH:/usr/local/go/bin |
|||
</syntaxhighlight> |
|||
'''3. Vérifier l'installation''' |
|||
<syntaxhighlight lang="shell"> |
|||
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> |
|||
Si tout s'est bien passé vous pourrez lancer le Web UI à l'adresse [[http://localhost:3303 localhost:3303]] |
Latest revision as of 09:32, 5 January 2021
Lien git pour une application de Chat utilisant Nearby Messages API : https://github.com/ulternate/nearby-chat
Vidéo montrant l'application : https://drive.google.com/file/d/1CB_L_wKSVIk0AuYujakStH6UFhcHK8Te/view?usp=sharing