Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 891 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 891 Bytes

Gitea.app

The easiest way to get started with Gitea on the Mac

Just download, drag to the applications folder, and double-click.

Screenshot

--

How to build

git clone https://github.com/YassineLafryhi/GiteaApp.git
cd GiteaApp
mkdir App && cd App
wget https://github.com/go-gitea/gitea/releases/download/v1.21.5/gitea-1.21.5-darwin-10.12-arm64
wget https://github.com/go-gitea/gitea/releases/download/v1.21.5/gitea-1.21.5-darwin-10.12-amd64
mv gitea-1.21.5-darwin-10.12-arm64 gitea-arm64
mv gitea-1.21.5-darwin-10.12-amd64 gitea-amd64
chmod +x gitea-arm64 && chmod +x gitea-amd64
cd ..
xcodebuild
open build/Release
# then move Gitea.app to /Applications folder

Credits

Forked and adapted from Redis.app.