docs: landing page with setup steps + CLI downloads
Build & Deploy Docs / deploy (push) Failing after 4s
Build & Deploy Docs / deploy (push) Failing after 4s
Replaces Gitea's "What is Gitea?" with Tinqs Studio getting started: - Download table for all 5 platforms with direct S3 links - One-liner install commands (macOS/Linux/Windows) - Login, clone, migrate, verify steps - Agent paste block for Cursor / Claude Code - Links to all documentation sections Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
+88
-101
@@ -1,110 +1,97 @@
|
||||
---
|
||||
date: "2016-11-08T16:00:00+02:00"
|
||||
slug: /
|
||||
sidebar_position: 10
|
||||
sidebar_position: 1
|
||||
---
|
||||
|
||||
# Tinqs Studio
|
||||
|
||||
The platform for agentic game development. Git hosting, CI/CD, AI tools, and team collaboration — built on Gitea.
|
||||
|
||||
## Get Started
|
||||
|
||||
### 1. Download tstudio CLI
|
||||
|
||||
| Platform | Download |
|
||||
|----------|----------|
|
||||
| **Windows** | [tstudio-windows-amd64.exe](https://tinqs-cli-releases.s3.eu-west-1.amazonaws.com/tstudio/latest/tstudio-windows-amd64.exe) |
|
||||
| **macOS (Apple Silicon)** | [tstudio-darwin-arm64](https://tinqs-cli-releases.s3.eu-west-1.amazonaws.com/tstudio/latest/tstudio-darwin-arm64) |
|
||||
| **macOS (Intel)** | [tstudio-darwin-amd64](https://tinqs-cli-releases.s3.eu-west-1.amazonaws.com/tstudio/latest/tstudio-darwin-amd64) |
|
||||
| **Linux (x64)** | [tstudio-linux-amd64](https://tinqs-cli-releases.s3.eu-west-1.amazonaws.com/tstudio/latest/tstudio-linux-amd64) |
|
||||
| **Linux (ARM)** | [tstudio-linux-arm64](https://tinqs-cli-releases.s3.eu-west-1.amazonaws.com/tstudio/latest/tstudio-linux-arm64) |
|
||||
|
||||
Or one-liner:
|
||||
|
||||
```bash title="macOS / Linux"
|
||||
curl -fsSL https://tinqs-cli-releases.s3.eu-west-1.amazonaws.com/tstudio/latest/tstudio-darwin-arm64 -o tstudio && chmod +x tstudio && ./tstudio login
|
||||
```
|
||||
|
||||
```powershell title="Windows (PowerShell)"
|
||||
irm https://tinqs-cli-releases.s3.eu-west-1.amazonaws.com/tstudio/latest/tstudio-windows-amd64.exe -OutFile tstudio.exe; .\tstudio.exe login
|
||||
```
|
||||
|
||||
The binary auto-installs to your PATH on first run.
|
||||
|
||||
### 2. Log in
|
||||
|
||||
```bash
|
||||
tstudio login
|
||||
```
|
||||
|
||||
Your browser opens. Authorize, and the CLI sets up everything: SSH key, git credentials, HTTPS access.
|
||||
|
||||
### 3. Clone a project
|
||||
|
||||
```bash
|
||||
tstudio clone tinqs/studio
|
||||
```
|
||||
|
||||
### 4. Fix old remotes (if migrating)
|
||||
|
||||
```bash
|
||||
tstudio migrate --dir ~/tinqs-ltd
|
||||
```
|
||||
|
||||
### 5. Verify
|
||||
|
||||
```bash
|
||||
tstudio doctor
|
||||
```
|
||||
|
||||
### 6. Paste into your agent
|
||||
|
||||
Copy this into **Cursor** or **Claude Code**:
|
||||
|
||||
```
|
||||
I just installed tstudio CLI for Tinqs Studio (tinqs.com). Help me complete setup:
|
||||
|
||||
1. Run `tstudio doctor` — verify git, auth, SSH, connectivity
|
||||
2. Run `tstudio whoami` — confirm identity
|
||||
3. Run `tstudio repos` — list repositories
|
||||
4. Run `tstudio migrate --dir ~/tinqs-ltd --dry-run` then apply
|
||||
5. Run `git pull` in each repo to get latest
|
||||
6. Report what you found
|
||||
|
||||
Platform: tinqs.com | SSH: ssh.tinqs.com | Org: tinqs/
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
# What is Gitea?
|
||||
## Documentation
|
||||
|
||||
Gitea is a painless, self-hosted, all-in-one software development service. It includes Git hosting, code review, team collaboration, package registry, and CI/CD. It is similar to GitHub, Bitbucket and GitLab.
|
||||
- **[Getting Started](/tinqs/getting-started)** — detailed setup walkthrough
|
||||
- **[CLI Reference](/tinqs/cli)** — all tstudio commands
|
||||
- **[API Reference](/api/)** — full REST API (OpenAPI/Swagger)
|
||||
- **[Installation](/installation/from-binary)** — server setup (self-hosted)
|
||||
- **[Administration](/administration/config-cheat-sheet)** — configuration reference
|
||||
- **[CI/CD](/usage/actions/overview)** — Gitea Actions, pipelines, runners
|
||||
- **[Usage](/usage/repository)** — repositories, issues, pull requests, packages
|
||||
|
||||
Gitea was originally forked from [Gogs](https://gogs.io) and almost all the code has been changed. See the [Gitea Announcement](https://blog.gitea.com/welcome-to-gitea/) blog post to read about the justification for a fork.
|
||||
## Platform
|
||||
|
||||
:::warning
|
||||
Tinqs Studio is built on [Gitea](https://about.gitea.com/) — a self-hosted Git service. All Gitea documentation applies. This site includes both the upstream Gitea docs and Tinqs-specific additions.
|
||||
|
||||
Gitea does not send commits to upstream or cherry-pick commits from it, so there is no guarantee it will work if you upgrade from Gogs to Gitea. The recommended method is to migrate repositories from Gogs to Gitea.
|
||||
|
||||
:::
|
||||
|
||||
## Purpose
|
||||
|
||||
The goal of this project is to provide the easiest, fastest, and most painless way of setting
|
||||
up a self-hosted Git service.
|
||||
|
||||
With Go, this can be done platform-independently across
|
||||
**all platforms** which Go supports, including Linux, macOS, and Windows,
|
||||
on x86, amd64, ARM and PowerPC architectures.
|
||||
You can try it out using [the online demo](https://demo.gitea.com).
|
||||
|
||||
## Features
|
||||
|
||||
- **Code Hosting**
|
||||
|
||||
Gitea supports creating and managing repositories, browsing commit history and code files, reviewing and merging code submissions, managing collaborators, handling branches, and more. It also supports many common Git features such as tags, cherry-picking, hooks, integrated collaboration tools, and more.
|
||||
|
||||
- **Lightweight and Fast**
|
||||
|
||||
One of Gitea's design goals is to be lightweight and fast in response. Unlike some large code hosting platforms, it remains lean, performs well in terms of speed, and is suitable for resource-limited server environments.
|
||||
|
||||
- **Easy Deployment and Maintenance**
|
||||
|
||||
It can be easily deployed on various servers without complex configurations or dependencies. This makes it convenient for individual developers or small teams to set up and manage their own Git services.
|
||||
|
||||
- **Security**
|
||||
|
||||
Gitea places a strong emphasis on security, offering features such as user permission management, access control lists, and more to ensure the security of code and data.
|
||||
|
||||
- **Code Review**
|
||||
|
||||
Code review supports both the Pull Request workflow and AGit workflow. Reviewers can browse code online and provide review comments or feedback. Submitters can receive review comments and respond or modify code online. Code reviews can help individuals and organizations enhance code quality.
|
||||
|
||||
- **CI/CD**
|
||||
|
||||
Gitea Actions supports CI/CD functionality, compatible with GitHub Actions. Users can write workflows in familiar YAML format and reuse a variety of existing Actions plugins. Actions plugins support downloading from any Git website.
|
||||
|
||||
- **Project Management**
|
||||
|
||||
Gitea tracks project requirements, features, and bugs through columns and issues. Issues support features like branches, tags, milestones, assignments, time tracking, due dates, dependencies, and more.
|
||||
|
||||
- **Artifact Repository**
|
||||
|
||||
Gitea supports over 20 different types of public or private software package management, including Cargo, Chef, Composer, Conan, Conda, Container, Helm, Maven, npm, NuGet, Pub, PyPI, RubyGems, Vagrant, and more.
|
||||
|
||||
- **Open Source Community Support**
|
||||
|
||||
Gitea is an open-source project based on the MIT license. It has an active open-source community that continuously develops and improves the platform. The project also actively welcomes community contributions, ensuring updates and innovation.
|
||||
|
||||
- **Multilingual Support**
|
||||
|
||||
Gitea provides interfaces in multiple languages, catering to users globally and promoting internationalization and localization.
|
||||
|
||||
For more detailed information, please refer to: https://docs.gitea.com/installation/comparison#general-features
|
||||
|
||||
## System Requirements
|
||||
|
||||
- A Raspberry Pi 3 is powerful enough to run Gitea for small workloads.
|
||||
- 2 CPU cores and 1GB RAM is typically sufficient for small teams/projects.
|
||||
- Gitea should be run with a dedicated non-root system account on UNIX-type systems.
|
||||
- Note: Gitea manages the `~/.ssh/authorized_keys` file. Running Gitea as a regular user could break that user's ability to log in.
|
||||
- [Git](https://git-scm.com/) version 2.0.0 or later is required.
|
||||
- [Git Large File Storage](https://git-lfs.github.com/) will be available if enabled and if your Git version is >= 2.1.2
|
||||
- Git commit-graph rendering will be enabled automatically if your Git version is >= 2.18
|
||||
|
||||
## Browser Support
|
||||
|
||||
- Last 2 versions of Chrome, Firefox, Safari and Edge
|
||||
- Firefox ESR
|
||||
|
||||
## Components
|
||||
|
||||
- Web server framework: [Chi](http://github.com/go-chi/chi)
|
||||
- ORM: [XORM](https://xorm.io)
|
||||
- UI frameworks:
|
||||
- [jQuery](https://jquery.com)
|
||||
- [Fomantic UI](https://fomantic-ui.com)
|
||||
- [Vue3](https://vuejs.org)
|
||||
- and various components (see package.json)
|
||||
- Editors:
|
||||
- [CodeMirror](https://codemirror.net)
|
||||
- [EasyMDE](https://github.com/Ionaru/easy-markdown-editor)
|
||||
- [Monaco Editor](https://microsoft.github.io/monaco-editor)
|
||||
- Database drivers:
|
||||
- [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql)
|
||||
- [github.com/lib/pq](https://github.com/lib/pq)
|
||||
- [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
|
||||
- [github.com/denisenkom/go-mssqldb](https://github.com/denisenkom/go-mssqldb)
|
||||
|
||||
## Integrated Support
|
||||
|
||||
Please visit [Awesome Gitea](https://gitea.com/gitea/awesome-gitea/) to get more third-party integrated support
|
||||
| Service | URL |
|
||||
|---------|-----|
|
||||
| Platform | [tinqs.com](https://tinqs.com) |
|
||||
| API | [tinqs.com/api/swagger](https://tinqs.com/api/swagger) |
|
||||
| CLI Downloads | [S3](https://tinqs-cli-releases.s3.eu-west-1.amazonaws.com/tstudio/latest/) |
|
||||
|
||||
Reference in New Issue
Block a user