Skip to content

Commit

Permalink
fix: tab to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmerrell committed Feb 14, 2024
1 parent a873a1a commit cdce259
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions cmd/project/tomlBuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ func generateProjectToml(projectFolder, filename, projectName, cudaVersion, pyth
name = "%s"
[project]
# uuid - Unique identifier for the project. Generated automatically.
# volume_mount_path - Default volume mount path in serverless environment. Changing this may affect data persistence.
# base_image - Base Docker image used for the project environment. Includes essential packages and CUDA support.
# Use 'runpod/base' as a starting point. Customize only if you need additional packages or configurations.
# gpu_types - List of preferred GPU types for your development pod, ordered by priority.
# The pod will use the first available type from this list.
# For a full list of supported GPU types, visit: https://docs.runpod.io/references/gpu-types
# gpu_count - Number of GPUs to allocate for the pod.
# volume_mount_path - Default volume mount path in serverless environment. Changing this may affect data persistence.
# ports - Ports to expose and their protocols. Configure as needed for your application's requirements.
# uuid - Unique identifier for the project. Generated automatically.
# volume_mount_path - Default volume mount path in serverless environment. Changing this may affect data persistence.
# base_image - Base Docker image used for the project environment. Includes essential packages and CUDA support.
# Use 'runpod/base' as a starting point. Customize only if you need additional packages or configurations.
# gpu_types - List of preferred GPU types for your development pod, ordered by priority.
# The pod will use the first available type from this list.
# For a full list of supported GPU types, visit: https://docs.runpod.io/references/gpu-types
# gpu_count - Number of GPUs to allocate for the pod.
# volume_mount_path - Default volume mount path in serverless environment. Changing this may affect data persistence.
# ports - Ports to expose and their protocols. Configure as needed for your application's requirements.
# container_disk_size_gb - Disk space allocated for the container. Adjust according to your project's needs.
uuid = "%s"
Expand All @@ -47,18 +47,18 @@ container_disk_size_gb = 100
# Environment variables for the pod.
# For full list of base environment variables, visit: https://github.com/runpod/containers/blob/main/official-templates/base/Dockerfile
# POD_INACTIVITY_TIMEOUT - Duration (in seconds) before terminating the pod after the last SSH session ends.
# RUNPOD_DEBUG_LEVEL - Log level for RunPod. Set to 'debug' for detailed logs.
# UVICORN_LOG_LEVEL - Log level for Uvicorn. Set to 'warning' for minimal logs.
# RUNPOD_DEBUG_LEVEL - Log level for RunPod. Set to 'debug' for detailed logs.
# UVICORN_LOG_LEVEL - Log level for Uvicorn. Set to 'warning' for minimal logs.
POD_INACTIVITY_TIMEOUT = "120"
RUNPOD_DEBUG_LEVEL = "debug"
UVICORN_LOG_LEVEL = "warning"
[endpoint]
# Configuration for the deployed endpoint.
# Configuration for the deployed endpoint.
# For full list of endpoint configurations, visit: https://docs.runpod.io/serverless/references/endpoint-configurations
# active_workers - The minimum number of workers your endpoint will have running at any given point.
# Setting this amount to 1 will result in "always on" workers.
# Setting this amount to 1 will result in "always on" workers.
# This will allow you to have a worker ready to respond to job requests without incurring any cold start delay.
# max_workers - The maximum number of workers your endpoint will have running at any given point.
Expand All @@ -67,8 +67,8 @@ max_workers = 3
flashboot = true
[runtime]
# python_version - Python version to use for the project.
# handler_path - Path to the handler file for the project.
# python_version - Python version to use for the project.
# handler_path - Path to the handler file for the project.
# requirements_path - Path to the requirements file for the project.
python_version = "%s"
Expand Down

0 comments on commit cdce259

Please sign in to comment.