Platform
Projects
Manage projects and deployment sources in SkyPort.

Projects are the logical unit SkyPort uses to group a source path or repository, plus the deployments created from it.
Real CLI Workflows
terminal
skyport project list
skyport project pull https://github.com/example/app.git --name app
How Projects Are Used
- A project can point at a local path or a Git URL.
- The deployment command uses a project record and runtime settings.
- The dashboard can show the project list and recent deployment context.
Deployment Example
terminal
skyport deploy \
--project-path ./app \
--start-cmd "npm run start" \
--build-cmd "npm run build" \
--env NODE_ENV=production
Design Notes
Keep project docs grounded in what the code supports:
- project list and pull
- deployment creation
- deployment rollback
Do not describe project templates, full pipeline orchestration, or repository registry behavior unless it is implemented.
Next
- Read Services for the operational layer.
- Review CLI Installation for the command surface.
- Open First Deployment for the end-to-end flow.
