MCPcopy Create free account
hub / github.com/AutoForgeAI/autoforge / Project

Class Project

registry.py:108–115  ·  view source on GitHub ↗

SQLAlchemy model for registered projects.

Source from the content-addressed store, hash-verified

106
107
108class Project(Base):
109 """SQLAlchemy model for registered projects."""
110 __tablename__ = "projects"
111
112 name = Column(String(50), primary_key=True, index=True)
113 path = Column(String, nullable=False) # POSIX format for cross-platform
114 created_at = Column(DateTime, nullable=False)
115 default_concurrency = Column(Integer, nullable=False, default=3)
116
117
118class Settings(Base):

Callers 1

register_projectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected