Commit 613e6951 authored by Peter Leitzen's avatar Peter Leitzen

Merge branch 'lmca-kotlin-native' into 'master'

Project Template for Kotlin native

See merge request gitlab-org/gitlab!50162
parents d5447ebb aa7c17dc
...@@ -97,4 +97,8 @@ export default { ...@@ -97,4 +97,8 @@ export default {
text: s__('ProjectTemplates|GitLab Cluster Management'), text: s__('ProjectTemplates|GitLab Cluster Management'),
icon: '.template-option .icon-cluster_management', icon: '.template-option .icon-cluster_management',
}, },
kotlin_native_linux: {
text: s__('ProjectTemplates|Kotlin Native for Linux'),
icon: '.template-option .icon-gitlab_logo',
},
}; };
---
title: Project Template for Kotlin native
merge_request: 50162
author:
type: added
...@@ -63,7 +63,8 @@ module Gitlab ...@@ -63,7 +63,8 @@ module Gitlab
ProjectTemplate.new('salesforcedx', 'SalesforceDX', _('A project boilerplate for Salesforce App development with Salesforce Developer tools'), 'https://gitlab.com/gitlab-org/project-templates/salesforcedx'), ProjectTemplate.new('salesforcedx', 'SalesforceDX', _('A project boilerplate for Salesforce App development with Salesforce Developer tools'), 'https://gitlab.com/gitlab-org/project-templates/salesforcedx'),
ProjectTemplate.new('serverless_framework', 'Serverless Framework/JS', _('A basic page and serverless function that uses AWS Lambda, AWS API Gateway, and GitLab Pages'), 'https://gitlab.com/gitlab-org/project-templates/serverless-framework', 'illustrations/logos/serverless_framework.svg'), ProjectTemplate.new('serverless_framework', 'Serverless Framework/JS', _('A basic page and serverless function that uses AWS Lambda, AWS API Gateway, and GitLab Pages'), 'https://gitlab.com/gitlab-org/project-templates/serverless-framework', 'illustrations/logos/serverless_framework.svg'),
ProjectTemplate.new('jsonnet', 'Jsonnet for Dynamic Child Pipelines', _('An example showing how to use Jsonnet with GitLab dynamic child pipelines'), 'https://gitlab.com/gitlab-org/project-templates/jsonnet'), ProjectTemplate.new('jsonnet', 'Jsonnet for Dynamic Child Pipelines', _('An example showing how to use Jsonnet with GitLab dynamic child pipelines'), 'https://gitlab.com/gitlab-org/project-templates/jsonnet'),
ProjectTemplate.new('cluster_management', 'GitLab Cluster Management', _('An example project for managing Kubernetes clusters integrated with GitLab'), 'https://gitlab.com/gitlab-org/project-templates/cluster-management') ProjectTemplate.new('cluster_management', 'GitLab Cluster Management', _('An example project for managing Kubernetes clusters integrated with GitLab'), 'https://gitlab.com/gitlab-org/project-templates/cluster-management'),
ProjectTemplate.new('kotlin_native_linux', 'Kotlin Native Linux', _('A basic template for developing Linux programs using Kotlin Native'), 'https://gitlab.com/gitlab-org/project-templates/kotlin-native-linux')
].freeze ].freeze
end end
......
...@@ -1238,6 +1238,9 @@ msgstr "" ...@@ -1238,6 +1238,9 @@ msgstr ""
msgid "A basic page and serverless function that uses AWS Lambda, AWS API Gateway, and GitLab Pages" msgid "A basic page and serverless function that uses AWS Lambda, AWS API Gateway, and GitLab Pages"
msgstr "" msgstr ""
msgid "A basic template for developing Linux programs using Kotlin Native"
msgstr ""
msgid "A complete DevOps platform" msgid "A complete DevOps platform"
msgstr "" msgstr ""
...@@ -22096,6 +22099,9 @@ msgstr "" ...@@ -22096,6 +22099,9 @@ msgstr ""
msgid "ProjectTemplates|HIPAA Audit Protocol" msgid "ProjectTemplates|HIPAA Audit Protocol"
msgstr "" msgstr ""
msgid "ProjectTemplates|Kotlin Native for Linux"
msgstr ""
msgid "ProjectTemplates|Netlify/GitBook" msgid "ProjectTemplates|Netlify/GitBook"
msgstr "" msgstr ""
......
...@@ -11,6 +11,7 @@ RSpec.describe Gitlab::ProjectTemplate do ...@@ -11,6 +11,7 @@ RSpec.describe Gitlab::ProjectTemplate do
hexo sse_middleman gitpod_spring_petclinic nfhugo hexo sse_middleman gitpod_spring_petclinic nfhugo
nfjekyll nfplainhtml nfgitbook nfhexo salesforcedx nfjekyll nfplainhtml nfgitbook nfhexo salesforcedx
serverless_framework jsonnet cluster_management serverless_framework jsonnet cluster_management
kotlin_native_linux
] ]
expect(described_class.all).to be_an(Array) expect(described_class.all).to be_an(Array)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment