Skip to content

Commit 09af7c4

Browse files
Distribution files: README, package.json, .service example and more
1 parent 337c2b8 commit 09af7c4

7 files changed

+635
-12
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bin/*.js
1+
node_modules

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
A caching Git HTTP server
2+
============================
3+
4+
Serve local mirror repositories over HTTP, automatically updating them as needed.
5+
6+
Features:
7+
8+
- supports fetch/clone
9+
- enforced authentication to upstream before allowing any request
10+
- supports `Basic` HTTP authentication
11+
- supports HTTP (and HTTPS if installed behind Nginx or some other HTTP proxy server)
12+

bin/git-cache-http-server

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env node
2+
require("git-cache-http-server");
3+

0 commit comments

Comments
 (0)