vikrant/repoarenaPublic

A self-hosted git forge built to learn how GitHub works.

  • typescript
  • git
  • nextjs

1 star · Updated 2 hours ago

Initial commit

Author
RepoArena committed 2 hours ago
Commit
d1a2c9611e6a55155ac6234a4059bbe4f27da24f
Root
root commit
Browse files at this commit

7 changed files with +22 0

addedREADME.md+5View file
@@ -0,0 +1,5 @@
1+ # RepoArena
2+
3+ A self-hosted git forge built to learn how GitHub works.
4+
5+ Clone over HTTPS or SSH, push commits, open issues.
added"b/edge/caf\303\251-\346\227\245\346\234\254\350\252\236.md"+3View file
@@ -0,0 +1,3 @@
1+ # Unicode filename
2+
3+ Proves that non-ASCII paths resolve on every route.
addededge/crlf.txt+3View file
@@ -0,0 +1,3 @@
1+ one
2+ two
3+ three
addededge/empty.txtView file

No content changes.

addededge/no-trailing-newline.txt+1View file
@@ -0,0 +1 @@
1+ just one line, no newline at the end
addedlogo.pngView file

Binary file not shown.

addedsrc/index.ts+10View file
@@ -0,0 +1,10 @@
1+ // A tiny sample module so the repo has browsable source.
2+ export function greet(name: string): string {
3+ return `Hello, ${name}!`;
4+ }
5+
6+ export function add(a: number, b: number): number {
7+ return a + b;
8+ }
9+
10+ console.log(greet("RepoArena"));