Skip to content

Commit cdce259

Browse files
committed
fix: tab to spaces
1 parent a873a1a commit cdce259

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

cmd/project/tomlBuilder.go

+16-16
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ func generateProjectToml(projectFolder, filename, projectName, cudaVersion, pyth
1414
name = "%s"
1515
1616
[project]
17-
# uuid - Unique identifier for the project. Generated automatically.
18-
# volume_mount_path - Default volume mount path in serverless environment. Changing this may affect data persistence.
19-
# base_image - Base Docker image used for the project environment. Includes essential packages and CUDA support.
20-
# Use 'runpod/base' as a starting point. Customize only if you need additional packages or configurations.
21-
# gpu_types - List of preferred GPU types for your development pod, ordered by priority.
22-
# The pod will use the first available type from this list.
23-
# For a full list of supported GPU types, visit: https://docs.runpod.io/references/gpu-types
24-
# gpu_count - Number of GPUs to allocate for the pod.
25-
# volume_mount_path - Default volume mount path in serverless environment. Changing this may affect data persistence.
26-
# ports - Ports to expose and their protocols. Configure as needed for your application's requirements.
17+
# uuid - Unique identifier for the project. Generated automatically.
18+
# volume_mount_path - Default volume mount path in serverless environment. Changing this may affect data persistence.
19+
# base_image - Base Docker image used for the project environment. Includes essential packages and CUDA support.
20+
# Use 'runpod/base' as a starting point. Customize only if you need additional packages or configurations.
21+
# gpu_types - List of preferred GPU types for your development pod, ordered by priority.
22+
# The pod will use the first available type from this list.
23+
# For a full list of supported GPU types, visit: https://docs.runpod.io/references/gpu-types
24+
# gpu_count - Number of GPUs to allocate for the pod.
25+
# volume_mount_path - Default volume mount path in serverless environment. Changing this may affect data persistence.
26+
# ports - Ports to expose and their protocols. Configure as needed for your application's requirements.
2727
# container_disk_size_gb - Disk space allocated for the container. Adjust according to your project's needs.
2828
2929
uuid = "%s"
@@ -47,18 +47,18 @@ container_disk_size_gb = 100
4747
# Environment variables for the pod.
4848
# For full list of base environment variables, visit: https://github.com/runpod/containers/blob/main/official-templates/base/Dockerfile
4949
# POD_INACTIVITY_TIMEOUT - Duration (in seconds) before terminating the pod after the last SSH session ends.
50-
# RUNPOD_DEBUG_LEVEL - Log level for RunPod. Set to 'debug' for detailed logs.
51-
# UVICORN_LOG_LEVEL - Log level for Uvicorn. Set to 'warning' for minimal logs.
50+
# RUNPOD_DEBUG_LEVEL - Log level for RunPod. Set to 'debug' for detailed logs.
51+
# UVICORN_LOG_LEVEL - Log level for Uvicorn. Set to 'warning' for minimal logs.
5252
5353
POD_INACTIVITY_TIMEOUT = "120"
5454
RUNPOD_DEBUG_LEVEL = "debug"
5555
UVICORN_LOG_LEVEL = "warning"
5656
5757
[endpoint]
58-
# Configuration for the deployed endpoint.
58+
# Configuration for the deployed endpoint.
5959
# For full list of endpoint configurations, visit: https://docs.runpod.io/serverless/references/endpoint-configurations
6060
# active_workers - The minimum number of workers your endpoint will have running at any given point.
61-
# Setting this amount to 1 will result in "always on" workers.
61+
# Setting this amount to 1 will result in "always on" workers.
6262
# This will allow you to have a worker ready to respond to job requests without incurring any cold start delay.
6363
# max_workers - The maximum number of workers your endpoint will have running at any given point.
6464
@@ -67,8 +67,8 @@ max_workers = 3
6767
flashboot = true
6868
6969
[runtime]
70-
# python_version - Python version to use for the project.
71-
# handler_path - Path to the handler file for the project.
70+
# python_version - Python version to use for the project.
71+
# handler_path - Path to the handler file for the project.
7272
# requirements_path - Path to the requirements file for the project.
7373
7474
python_version = "%s"

0 commit comments

Comments
 (0)