|
| 1 | +// Copyright 2023 Jetpack Technologies Inc and contributors. All rights reserved. |
| 2 | +// Use of this source code is governed by the license in the LICENSE file. |
| 3 | + |
| 4 | +package templates |
| 5 | + |
| 6 | +var popularTemplates = []string{ |
| 7 | + "node-npm", |
| 8 | + "node-typescript", |
| 9 | + "node-yarn", |
| 10 | + "python-pip", |
| 11 | + "python-pipenv", |
| 12 | + "python-poetry", |
| 13 | + "php", |
| 14 | + "ruby", |
| 15 | + "rust", |
| 16 | + "go", |
| 17 | +} |
| 18 | + |
| 19 | +var templates = map[string]string{ |
| 20 | + "apache": "examples/servers/apache/", |
| 21 | + "argo": "examples/cloud_development/argo-workflows/", |
| 22 | + "caddy": "examples/servers/caddy/", |
| 23 | + "django": "examples/stacks/django/", |
| 24 | + "dotnet": "examples/development/csharp/hello-world/", |
| 25 | + "drupal": "examples/stacks/drupal/", |
| 26 | + "elixir": "examples/development/elixir/elixir_hello/", |
| 27 | + "fsharp": "examples/development/fsharp/hello-world/", |
| 28 | + "go": "examples/development/go/hello-world/", |
| 29 | + "gradio": "examples/data_science/pytorch/gradio/", |
| 30 | + "haskell": "examples/development/haskell/", |
| 31 | + "java-gradle": "examples/development/java/gradle/hello-world/", |
| 32 | + "java-maven": "examples/development/java/maven/hello-world/", |
| 33 | + "jekyll": "examples/stacks/jekyll/", |
| 34 | + "jupyter": "examples/data_science/jupyter/", |
| 35 | + "lapp-stack": "examples/stacks/lapp-stack/", |
| 36 | + "lepp-stack": "examples/stacks/lepp-stack/", |
| 37 | + "llama": "examples/data_science/llama/", |
| 38 | + "maelstrom": "examples/cloud_development/maelstrom/", |
| 39 | + "minikube": "examples/cloud_development/minikube/", |
| 40 | + "mariadb": "examples/databases/mariadb/", |
| 41 | + "nginx": "examples/servers/nginx/", |
| 42 | + "nim": "examples/development/nim/spinnytest/", |
| 43 | + "node-npm": "examples/development/nodejs/nodejs-npm/", |
| 44 | + "node-typescript": "examples/development/nodejs/nodejs-typescript/", |
| 45 | + "node-yarn": "examples/development/nodejs/nodejs-yarn/", |
| 46 | + "php": "examples/development/php/php8.1/", |
| 47 | + "postgres": "examples/databases/postgres/", |
| 48 | + "python-pip": "examples/development/python/pip/", |
| 49 | + "python-pipenv": "examples/development/python/pipenv/", |
| 50 | + "python-poetry": "examples/development/python/poetry/poetry-demo/", |
| 51 | + "pytorch": "examples/data_science/pytorch/basic-example/", |
| 52 | + "rails": "examples/stacks/rails/", |
| 53 | + "redis": "examples/databases/redis/", |
| 54 | + "ruby": "examples/development/ruby/", |
| 55 | + "rust": "examples/development/rust/rust-stable-hello-world/", |
| 56 | + "temporal": "examples/cloud_development/temporal/", |
| 57 | + "tensorflow": "examples/data_science/tensorflow/", |
| 58 | + "tutorial": "examples/tutorial/", |
| 59 | + "zig": "examples/development/zig/zig-hello-world/", |
| 60 | +} |
0 commit comments