The Floating Brain
The Floating Brain

Reputation: 966

Generate Web Pages For Git Repository?

I believe a similar question to this has been asked before but its not quite the same. I would like to host a private git on a server, and generate web pages based on it with all the nice statistics and stuff similar to github (does github have an api another for this [other than the one I am about to mention]?). I have looked into gitlab but I only see installation instructions for Ubuntu and centos. The computer I would likely be running this server on has some constraints and I would like to go with arch if I can. There are other applications on the server and I would like to be able to just run a script and generate the page, and maybe modify it with some CSS or something (possibly something nice like github, but nothing too too heavy duty)?

Thanks!

~ TFB

Upvotes: 0

Views: 75

Answers (1)

Chris
Chris

Reputation: 137215

If you're looking for something lighter-weight than GitLab, you might want to look at Gitweb, which is an official part of the Git project. It might even already be installed on your server. Gitweb is well-supported on Arch.

Another possibility is Go Git Service (GOGS), which is a relative newcomer written in Go. GOGS is designed to be lightweight and easy to set up. It looks like there are AUR packages for Arch.

Upvotes: 1

Related Questions