deploy-to-temps
Installation
SKILL.md
Deploy to Temps
Deploy applications to Temps with automatic framework detection and optimized builds.
Supported Frameworks
| Framework | Detection | Build Command |
|---|---|---|
| Next.js | next.config.* |
next build |
| Vite | vite.config.* |
vite build |
| Create React App | react-scripts in package.json |
react-scripts build |
| Remix | remix.config.* |
remix build |
| Express/Node.js | express in dependencies |
npm run build (if exists) |
| NestJS | @nestjs/core in dependencies |
nest build |
| Python/Flask | requirements.txt + app.py |
- |
| Python/Django | manage.py |
python manage.py collectstatic |
| Go | go.mod |
go build |
| Rust | Cargo.toml |
cargo build --release |
Related skills