geronimo.cli
Geronimo CLI Module.
The command-line interface (CLI) serves as the primary entry point for interacting with the Geronimo platform. It provides commands for:
- Initializing new projects (
geronimo init) - Managing configurations (
geronimo config) - Deploying infrastructure (
geronimo deploy) - Managing API keys for Service to Service authentication (
geronimo keys) - Managing authentication to Geronimo Cloud (
geronimo auth)
This module contains the Click-based command definitions and the main entry point logic.
1"""Geronimo CLI Module. 2 3The command-line interface (CLI) serves as the primary entry point for interacting 4with the Geronimo platform. It provides commands for: 5- Initializing new projects (`geronimo init`) 6- Managing configurations (`geronimo config`) 7- Deploying infrastructure (`geronimo deploy`) 8- Managing API keys for Service to Service authentication (`geronimo keys`) 9- Managing authentication to Geronimo Cloud (`geronimo auth`) 10 11This module contains the Click-based command definitions and the main entry point logic. 12""" 13 14__docformat__ = "google"