Simple PaaS - Deploy and manage web applications on a single server
Project description
hop3-server
Core server for the Hop3 Platform-as-a-Service.
Overview
hop3-server is the central orchestrator that handles application deployments, process management, reverse proxy configuration, and addon services. It provides a JSON-RPC API for communication with hop3-cli and hop3-tui.
Features
- Git-push deployments: Deploy applications via
git push - Automatic build system: Detects language (Python, Node, Ruby, Go, Rust, etc.) and builds automatically
- Process management: Manages app processes based on Procfile via uWSGI
- Reverse proxy: Nginx/Caddy/Traefik with automatic SSL certificates
- Addon services: PostgreSQL, MySQL, Redis management
- Plugin architecture: Extensible via pluggy-based plugins
- JSON-RPC API: For CLI and TUI communication
Installation
Production
curl -LsSf https://hop3.cloud/install-server.py | sudo python3 -
Development
pip install hop3-server
Quick Start
# Run the server
hop3-server serve
# Run with specific host/port
hop3-server serve --host 0.0.0.0 --port 8000
Configuration
Server configuration via environment variables or /etc/hop3/config.toml:
| Variable | Description | Default |
|---|---|---|
HOP3_HOME |
Home directory | /home/hop3 |
HOP3_DATABASE_URL |
Database URL | sqlite:///hop3.db |
HOP3_SECRET_KEY |
JWT signing key | (required) |
Architecture
hop3-server/
├── src/hop3/
│ ├── server/ # Litestar ASGI application
│ │ ├── asgi.py # App factory
│ │ └── controllers/ # API endpoints
│ ├── commands/ # RPC command handlers
│ ├── deployers/ # Deployment orchestration
│ ├── orm/ # SQLAlchemy models
│ ├── plugins/ # Plugin system
│ │ ├── build/ # Builders, language toolchains
│ │ ├── deploy/ # Deployers (uWSGI, static)
│ │ ├── proxy/ # Nginx, Caddy, Traefik
│ │ └── addons/ # PostgreSQL, MySQL, Redis
│ ├── core/ # Core abstractions
│ │ ├── protocols.py # Plugin protocols
│ │ └── hookspecs.py # Hook specifications
│ └── toolchains/ # Language toolchains
└── tests/
├── a_unit/ # Unit tests
├── b_integration/ # Integration tests
├── c_system/ # System tests
└── d_e2e/ # End-to-end tests
Filesystem Layout
/home/hop3/
├── apps/<app_name>/
│ ├── git/ # Bare git repository
│ ├── src/ # Checked-out source code
│ ├── data/ # Persistent data
│ └── log/ # Log files
├── nginx/ # Nginx configs and certs
├── uwsgi-available/ # uWSGI configs
├── uwsgi-enabled/ # Active uWSGI configs
└── hop3.db # SQLite database
Development
# Unit tests
uv run pytest tests/a_unit/ -v
# Integration tests
uv run pytest tests/b_integration/ -v
# System tests (requires Docker)
uv run pytest tests/c_system/ -v
# Lint and format
uv run ruff check src/
uv run ruff format src/
Documentation
Related Packages
- hop3-cli - CLI client for this server
- hop3-tui - TUI client for this server
- hop3-installer - Installation tools
License
Apache-2.0 - Copyright (c) 2024-2026, Abilian SAS
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hop3_server-0.4.0.tar.gz.
File metadata
- Download URL: hop3_server-0.4.0.tar.gz
- Upload date:
- Size: 326.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0f015d677c32fec12ed72bc3c0315b9a7a53056c1f4da62ec73fb492e13c5f0
|
|
| MD5 |
6669acc6a4c2cdede8198d009134abaa
|
|
| BLAKE2b-256 |
e2b0ab41376f93b1b0a520b1232837247c3e9090ec4e5b62884b4a24a8646fa5
|
File details
Details for the file hop3_server-0.4.0-py3-none-any.whl.
File metadata
- Download URL: hop3_server-0.4.0-py3-none-any.whl
- Upload date:
- Size: 452.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af275b4368d9c74088691ed8a6d19c1d1814db1c8b9a93dff8151c4941513802
|
|
| MD5 |
927c7cbf2fd933cdcfa4026111b98422
|
|
| BLAKE2b-256 |
bb5eb143a211f450cbc08ff51e0e3e5899853e69dd816b37a13eb262b834a7ab
|