jerry
jerry

Reputation: 23

Deploying laravel application or making it live on Github pages

I have one laravel application named Photogallery. And I wanted to make it live on github pages .

Since I dont know how to do it plese help me here.

Upvotes: 2

Views: 6101

Answers (2)

Mubeen Ahmad
Mubeen Ahmad

Reputation: 438

  1. The GitHub Pages do not support PHP and thus cannot run a Laravel application.
  2. GitHub Pages is a static site hosting service that takes HTML, CSS, and JavaScript files straight from a repository on GitHub, optionally runs the files through a build process and publishes a website.
  3. Github Pages uses Jekyll to build static HTML files and serve those.

Upvotes: 3

Santiago Barchetta
Santiago Barchetta

Reputation: 131

The Github pages only allow static html. To do so you need to upload your static site with all the resources (css, javascript, images,...) to the Github pages branch.

Upvotes: 3

Related Questions