techrec/12factors.md

20 lines
703 B
Markdown
Raw Normal View History

techrec tries to follow [The Twelve Factors](http://12factor.net/), but it's
still not perfect
2014-04-22 11:33:05 +02:00
* **Codebase**: YES
* **Dependencies**: YES, ffmpeg must be done manually
* **Config**: ALMOST: the environment contains the path for the config file
* **Backing services**: there are none, so YES
* **Build, release, run**: YES
* **Processes**: ALMOST; the process are not completely stateless, as the job
dispatcher is in them
2014-04-22 11:33:05 +02:00
* **Port binding**: YES
* **Concurrency**: NO; as in Processes, the job dispatcher is a violation
* **Disposability**: YES
* **Dev/prod parity**: YES
* **Logs**: YES; but accesslog is written to stderr
* **Admin processes**: YES, using cli.py
vim: set ft=markdown: