Added runLocalDocs for templates
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "Template" ADD COLUMN "runLocalDocs" TEXT NOT NULL DEFAULT 'Documentation
|
||||
|
||||
This template does not have any documentation yet.';
|
||||
@@ -601,6 +601,7 @@ model Template {
|
||||
imageUrl String
|
||||
repositoryUrl String
|
||||
markdownDocs String @default("Documentation\n\nThis template does not have any documentation yet.")
|
||||
runLocalDocs String @default("Documentation\n\nThis template does not have any documentation yet.")
|
||||
|
||||
priority Int @default(0)
|
||||
|
||||
|
||||
@@ -26,6 +26,7 @@ async function seed() {
|
||||
services: [],
|
||||
workflowIds: ["basic-starter"],
|
||||
markdownDocs: await readTemplateDocsFile("basic-starter"),
|
||||
runLocalDocs: await readTemplateDocsFile("basic-starter-local"),
|
||||
};
|
||||
|
||||
const githubStarsToSlack = {
|
||||
|
||||
Reference in New Issue
Block a user