Redireccionar l'arrel al repo de GitHub

Change-Id: I4487268f09b274d683511a240fd11501c5e04935
diff --git a/config.default.php b/config.default.php
index 13ce1ae..0ad1016 100644
--- a/config.default.php
+++ b/config.default.php
@@ -39,3 +39,6 @@
 // Ignorar la llista d'orígens permesos i permetre a qualsevol pàgina web
 // interactuar amb l'API
 $conf['allowAllOrigins'] = false;
+
+// URL del repositori de GitHub.
+$conf['gitHubRepo'] = 'https://github.com/delefme/covid-tracability-backend';
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..869a363
--- /dev/null
+++ b/index.php
@@ -0,0 +1,5 @@
+<?php
+require_once(__DIR__.'/core.php');
+
+if (isset($conf['gitHubRepo']))
+  header('Location: '.$conf['gitHubRepo']);