Skip to content

Commit

Permalink
add entrypoint to Task model and description to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Oct 11, 2023
1 parent 8808840 commit bae1160
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/api/src/backend/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@ class Meta:

class Pipeline(models.Model):
id = models.CharField(validators=[validate_id], max_length=128)
description = models.TextField(null=True)
created_at = models.DateTimeField(auto_now_add=True)
env = models.JSONField(null=True)
params = models.JSONField(null=True)
Expand Down Expand Up @@ -473,6 +474,7 @@ class Meta:
command = models.TextField(null=True)
installer = models.CharField(max_length=64, null=True)
packages = models.JSONField(null=True, default=list)
entrypoint = models.TextField(null=True)

# Container run specific properties
# Full image name for container run. includes scheme.
Expand Down

0 comments on commit bae1160

Please sign in to comment.