Under the Hood
SQLite Database
~/.cc-cli/
cc_cli.db ← all your data
logs/
cc.log ← rotating log fileCustom Mini-ORM
class Environment(BaseEntity):
_name = "environment"
name = Property(type=str, unique=True, required=True)
project_id = Property(relation="project")
version_id = Property(relation="version")
branch_name = Property(type=str)
database_id = Property(relation="database")
module_ids = Property(one2many="module", inverse_name="environment_id")Auto Schema Migration
App State
Shell Integration
Last updated
Was this helpful?