FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Gitea Has a Free API: Self-Hosted Git Service That Just Works
How-ToDevOps

Gitea Has a Free API: Self-Hosted Git Service That Just Works

via Dev.to DevOpsAlex Spinov2h ago

Gitea is a painless self-hosted Git service. It is written in Go, runs on minimal resources, and provides a GitHub-like experience with issues, pull requests, CI/CD, and a comprehensive REST API. What Is Gitea? Gitea is a community-managed lightweight code hosting solution. A single binary that runs on a Raspberry Pi, yet powerful enough for organizations with thousands of repositories. Key Features: Single binary, cross-platform GitHub/GitLab-like UI Issues, PRs, code review Gitea Actions (GitHub Actions compatible) Container registry Package registries (npm, PyPI, Maven, etc.) OAuth2 provider Comprehensive REST and GraphQL API Installation # Docker docker run -d --name gitea -p 3000:3000 -p 222:22 \ -v gitea-data:/data gitea/gitea:latest # Or binary wget https://dl.gitea.com/gitea/1.22/gitea-1.22-linux-amd64 chmod +x gitea- * ./gitea-1.22-linux-amd64 web Gitea REST API import requests GITEA = " http://localhost:3000/api/v1 " TOKEN = " your-access-token " HEADERS = { " Authorization "

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
2 views

Related Articles

Week 6 — No New Problems. Just Me and Everything I Already Learned.
How-To

Week 6 — No New Problems. Just Me and Everything I Already Learned.

Medium Programming • 2h ago

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)
How-To

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)

Medium Programming • 2h ago

Android Remote Compose:讓 Android UI 不用發版也能更新
How-To

Android Remote Compose:讓 Android UI 不用發版也能更新

Medium Programming • 4h ago

How-To

Learn Something Old Every Day, Part XVIII: How Does FPU Detection Work?

Lobsters • 10h ago

“Learn to Code” Is Dead… Learn to Think Instead
How-To

“Learn to Code” Is Dead… Learn to Think Instead

Medium Programming • 12h ago

Discover More Articles