diff --git a/.gitignore b/.gitignore index bc67a66..caa5168 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ npm-debug.log yarn-error.log /.idea /.vscode +/.vs diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..1818dfd --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: vendor/bin/heroku-php-apache2 public/index.php \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index b130397..a7c3f6c 100644 --- a/routes/web.php +++ b/routes/web.php @@ -14,5 +14,5 @@ use Illuminate\Support\Facades\Route; */ Route::get('/', function () { - return view('welcome'); + return ['APP' => 'Sistema Gestor de Calidad de la Escuela de Relaciones Industriales']; });