A Runpod project is a folder with everything you need to run a development session on a Pod.
To create a new project, run the following command.
Copy
runpod project create
Select a starter project. Starter projects include preliminary settings for different kinds of project environments, such as LLM or image diffusion development.
A development session is the active connection between your local environment and the project environment on your Pod. During a development session, local changes to your project propagate to the project environment in real time.
To start a development session, run the following command.
Copy
runpodctl project dev
When you’re done developing, press ctrl + c to end the session. Your Pod will terminate automatically when the session ends.
You can resume developing at any time by running runpodctl project dev again.
Now that you’ve developed your project, you can deploy an endpoint directly to Runpod or build a Dockerfile to create a portable image.
When you deploy a project, Runpod creates a serverless endpoint with access to saved project data on your network volume.To deploy a project, run the following command.
Copy
runpodctl project deploy
Your project is now deployed to a Serverless Endpoint. You can interact with this Endpoint like you would any other Serverless Endpoint. For more information, see Endpoints.
You have the option to build your project instead of deploying it as an endpoint. When you build a project, Runpod emits a Dockerfile.To build a project, run the following command.
Copy
runpodctl project build
You can use the generated Dockerfile to build an image, then deploy the image to any API server.