No description
  • JavaScript 45.5%
  • CSS 28.1%
  • Python 24.1%
  • Shell 2%
  • HTML 0.2%
  • Other 0.1%
Find a file
2026-04-30 16:27:34 +02:00
backend/app Add GUI backup and screenshot manual 2026-04-30 15:45:03 +02:00
config Polish FoxGit sync UX 2026-04-27 11:36:27 +02:00
docker FoxGit v1 freeze 2026-04-26 11:34:42 +02:00
docs Add Forgejo-first install guidance to handbook 2026-04-30 16:27:34 +02:00
frontend Add Git clone help and clipboard fallback 2026-04-30 16:23:05 +02:00
logs FoxGit v1 freeze 2026-04-26 11:34:42 +02:00
scripts Add final smoke script 2026-04-30 13:39:56 +02:00
.dockerignore Polish FoxGit v1 Docker UI 2026-04-26 12:42:50 +02:00
.gitignore Clean FoxGit sync UX commit artifacts 2026-04-27 11:38:03 +02:00
docker-compose.yml Add GUI backup and screenshot manual 2026-04-30 15:45:03 +02:00
Dockerfile Expose CLI recovery tool in container runtime 2026-04-30 13:24:44 +02:00
fgback.sh Add GUI backup and screenshot manual 2026-04-30 15:45:03 +02:00
gitlines.sh FoxGit v1 freeze 2026-04-26 11:34:42 +02:00
README.md Add FoxGit handbook 2026-04-30 15:59:43 +02:00
requirements.txt FoxGit v1 freeze 2026-04-26 11:34:42 +02:00
rs.sh FoxGit v1 freeze 2026-04-26 11:34:42 +02:00
run.sh FoxGit v1 freeze 2026-04-26 11:34:42 +02:00
VERSION Prepare v1.1.0 final release 2026-04-30 13:44:23 +02:00

FoxGit

FoxGit logo

FoxGit is a self-hosted Git cockpit for LANX.

Forgejo stays the Git engine. FoxGit becomes the daily workspace for browsing, editing, committing, and syncing projects.

Browse. Understand. Edit. Commit. Sync.

What FoxGit does

FoxGit provides a clean web interface for working with local Git repositories connected to Forgejo.

Current v1.1 features include:

  • first-run setup for creating the first FoxGit admin
  • optional Forgejo setup modes: skip, link existing user, or create new user
  • CLI-only recovery through scripts/foxgit-recovery.py
  • read-only user desktop
  • repository landing pages
  • README preview
  • Forgejo metadata bridge
  • Forgejo create, import, attach/link, and first-push support
  • recent Git activity panel
  • repository overview, stats, analytics, and lifecycle cards
  • file browser
  • file viewer and editor
  • Git status overview
  • file diff viewer
  • commit history
  • staged-only commit flow
  • pull, push, fetch, and sync tools
  • branch management
  • cleanup and ignore assistant
  • GUI backup from the admin cockpit
  • screenshot manual with 32 guided UI images
  • admin cockpit separated from normal user mode

Manual

The screenshot manual gives a guided tour through the FoxGit v1.1 interface, while the handbook explains the workflows, safety model, recovery notes, and operating practices:

Design goal

FoxGit is not meant to replace Forgejo.

Forgejo remains the Git server, authentication provider, repository host, and long-term source of truth.

FoxGit is the dashboard layer.

The goal is simple:

FoxGit = daily workspace and project dashboard
Forgejo = Git engine and repository backend

User mode

User mode is read-only and safe.

It is meant for browsing projects, reading documentation, opening files, and understanding repository activity without exposing destructive Git actions.

User mode includes:

  • project landing page
  • README preview
  • project facts
  • Forgejo metadata
  • recent activity
  • file browsing
  • direct Forgejo link
  • clone URL copy actions

Admin cockpit

Admin mode unlocks the tools needed to work on repositories directly.

Admin tools include:

  • edit files
  • create files and folders
  • rename and delete paths
  • Git status
  • diffs
  • commits
  • branches
  • pull, push, fetch, and sync
  • repository cleanup tools
  • analytics and stats views

Architecture

FoxGit is built as a simple FastAPI backend with a vanilla JavaScript frontend.

The current stack is intentionally low-complexity:

  • FastAPI
  • Uvicorn
  • vanilla HTML/CSS/JavaScript
  • SQLite runtime state
  • local Git repositories
  • Forgejo OAuth
  • Forgejo API metadata bridge
  • Docker runtime

Security model

FoxGit separates normal browsing from admin operations.

Read-only repository browsing is available to user mode, while Git write actions and cockpit tools are locked behind admin authentication and role mapping.

Fresh installs use first-run setup to create the first local admin.

After setup completes, web setup closes. Recovery is CLI-only.

Preferred recovery command inside Docker runtime:

docker exec -it foxgit python3 /app/scripts/foxgit-recovery.py status

Local fallback admin authentication uses a password hash, not cleartext storage.

Runtime secrets, Forgejo tokens, OAuth secrets, and Git credentials must not be committed.

Status

FoxGit is currently at v1.1 stable release stage.

The core dashboard direction is established:

  • user desktop
  • project landing page
  • first-run setup
  • CLI recovery
  • Forgejo metadata and lifecycle bridge
  • repo activity
  • admin cockpit
  • sync-safety and first-push flows

Next likely work areas:

  • release/changelog panel
  • issue/activity bridge
  • backup/export polish
  • future v1.2 planning

Credits

Built with ❤️ for Lanx by NodeFox 🦊

Maintained by Eddie Nielsen

Learn. Adopt. Survive. Share.