Define and deploy applications on Akash Network using SDL (Stack Definition Language).
SDL is a YAML-based configuration format that describes your application’s services, resources, and deployment requirements.
In This Section
Syntax Reference
Complete SDL syntax reference with interactive examples.
Examples Library
Collection of SDL examples for common use cases.
Best Practices
Best practices for writing SDL files.
Advanced Features
Advanced SDL features and techniques.
Quick Start
Minimum viable SDL:
version: "2.0"services: web: image: nginx:1.25.3 expose: - port: 80 to: - global: trueprofiles: compute: web: resources: cpu: units: 0.5 memory: size: 512Mi storage: size: 512Mi placement: akash: pricing: web: denom: uakt amount: 100deployment: web: akash: profile: web count: 1Next Steps
- Syntax Reference - Complete syntax documentation
- Examples Library - Real-world examples
- Best Practices - Learn best practices