v Getting Started - Tite

1 Installation

Install Tite globally using pip:

pip install tite-sc
Requires Python 3.9 or higher

2 Create Your First Project

Create a new project with a single command:

tite new my-awesome-project

This creates:

  • 📁 Project directory with src/ and tests/
  • 📄 README.md, pyproject.toml, .gitignore
  • 🐍 Virtual environment (.venv)
  • 📦 Git repository initialized

3 Start Development

Enter your project and start the development server:

cd my-awesome-project
tite dev

The development server runs with hot reload - changes are reflected instantly!