From a5364314ab58fdc3724218008d697b0411a8b5ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Offray=20Vladimir=20Luna=20C=C3=A1rdenas?= Date: Sat, 24 Jul 2021 19:23:36 -0500 Subject: [PATCH] Actualizar 'README.md' --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d9d5840..744e9cb 100644 --- a/README.md +++ b/README.md @@ -1 +1,20 @@ -ExoRepo provides syntactic sugar for Pharo's Iceberg to support repositories beyond GitLab, GitHub and Bitbucket. \ No newline at end of file +# ExoRepo + +ExoRepo provides syntactic sugar for Pharo's Iceberg to support repositories beyond GitLab, GitHub and +Bitbucket. + +To install this from Gitea, run from a playground: + +```smalltalk + location := FileLocator localDirectory / 'iceberg' / 'Offray' / 'ExoRepo'. + (IceRepositoryCreator new + location: location; + remote: (IceGitRemote url: 'https://code.tupale.co/Offray/ExoRepo.git'); + createRepository) + register. + + Metacello new + repository: 'gitlocal://', location fullName; + baseline: 'ExoRepo'; + load +``` \ No newline at end of file