This commit is contained in:
2026-04-12 01:06:31 +07:00
commit 10d660cbcb
1066 changed files with 228596 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# Heroku
## CLI
```bash
npm install -g heroku
heroku login
heroku create my-app
git push heroku main
```
## Config: Procfile
```
web: npm start
```
## Detection
- `Procfile`, `app.json`, buildpack detection
## Free Tier
- None (removed Nov 2022)
- Eco dynos: $5/mo
- In "sustaining engineering mode" since Feb 2026 — no new features
## Rollback
```bash
heroku releases
heroku rollback v123
```
## Best For
Legacy workloads only. Not recommended for new projects — migrate to Railway/Render/Fly.